我有一个基于image.User上传图片的应用程序,如果它被管理员批准,那么它会显示在网页中。这些图片不适用于那些不在特定计划中的用户。用户必须购买一个计划,然后他/她可以下载这些图像。但我们知道有默认选项可以通过右键单击保存图像。所以在这些图像上给出水印是安全的。所以我有决定用PIL给水印。
我在这里找到了一个turorial http://www.pythoncentral.io/watermark-images-python-2x/。但是不知道如何在我的django应用程序中实现它,因为我是python和django中的新手。上面的教程适用于单个image.But我有几张图片。那么如何一次在我的所有图像中添加水印。我在views.py中使用此定义来在我的网页中显示图像。
def showimage(request,template = 'base.html',page_template = 'photo/showimage.html'):
photo_list = Photo.objects.all()
context = {}
context.update({
'photo_list': photo_list,
'page_template': page_template,
})
if request.is_ajax():
template = page_template
return render_to_response(template,context,context_instance=RequestContext(request))
这是我的 showimage.html ,其中我已经渲染了我的图片......
{% extends 'base.html'%}
{%block title%}{%endblock%}
{%block content%}
{% load endless %}
<div class="container" >
<div class="row mt" style="padding-top:0px; margin-top:10px;">
<ul class="grid effect-2" id="grid">
{% paginate 40 photo_list %}
{% for photo in photo_list%}
{% if photo.approved%}
<li><a href = "{% url 'download_image' photo.id %}">
<img src={{photo.photo.url}} alt = 'sample photo' /></a>
</li>
{%endif%}
{% endfor %}
</ul>
</div><!-- row -->
</div><!-- container -->
<p>{%show_more%}</p>
{%endblock%}
不必仅使用上面给出的链接,您也可以使用自己的代码修改我上面给出的视图。
答案 0 :(得分:3)
免责声明:我是watermark tutorial
的作者其他信息:对于网站输出,以下是更改: -
import os, sys, StringIO ## change line 2 ##
def add_watermark(in_file, angle=23, opacity=0.25): ## change line 6 ##
out_file = StringIO.StringIO() ## insert after line 6 ##
...
return out_file.getValue() ## insert after 24 ##
使用它:myImage = add_watermark(photo_image)
。使用myImage
创建HTTP标头和输出。基本上我们将JPG保存到StringIO并使用getValue()来读取它。
同时检查Mark的叉子overlays an image代替。
答案 1 :(得分:1)
假设您有图像的服务器端URL:Photo.image_url
您可以使用以下视图功能返回带水印的图像:
from PIL import Image
from django.core.servers.basehttp import FileWrapper
from django.http import StreamingHttpResponse
def render_image_with_watermark(request, pk, text):
# pk is the primary key of photo model
photo = get_object_or_404(Photo, pk=pk)
# watermark the photo and save it to a temp file
tmp_name = tempfile.mktemp()
# this function was introduced in:
# http://www.pythoncentral.io/watermark-images-python-2x/
add_watermark(photo.image_url, text, out_file=tmp_name, angle=23, opacity=0.25)
# render the watermarked photo to response
wrapper = FileWrapper(open(photo.image_url, 'rb'))
response = StreamingHttpResponse(wrapper, 'image/jpeg')
response['Content-Length'] = os.path.getsize(photo.image_url)
response['Content-Disposition'] = 'attachment; filename=photo.jpg'
return response
如果你想渲染带有水印的所有图像,你可以先让上面的render_image_with_watermark视图有一个网址:
# urls.py
urlpatterns = patterns('',
url(r'^photo/(?P<pk>\d+)/$', 'render_image_with_watermark', name='render_image_with_watermark'),
...
)
执行此操作后,尝试访问url /photo/photo.pk,如果成功,它将直接渲染图像。
然后,更改您的showimage.html模板:
{% extends 'base.html'%}
{%block title%}{%endblock%}
{%block content%}
{% load endless %}
<div class="container" >
<div class="row mt" style="padding-top:0px; margin-top:10px;">
<ul class="grid effect-2" id="grid">
{% paginate 40 photo_list %}
{% for photo in photo_list%}
{% if photo.approved%}
<li><a href = "{% url 'download_image' photo.id %}">
<!-- ATTENTION HERE -->
<img src={% url 'render_image_with_watermark' pk=photo.id %} alt = 'sample photo' /></a>
</li>
{%endif%}
{% endfor %}
</ul>
</div><!-- row -->
</div><!-- container -->
<p>{%show_more%}</p>
{%endblock%}
试一试。