有很多对话可以涉及到这一点。另一方面,担心图像大小检查基本上有两个不同的问题。1)客户端和2)服务器端。所以让我们打破它。
服务器端
这是两者中最重要的部分。是的,客户端可以帮助减小图像的大小或通知用户他们尝试上传的图像太大,但最终您希望服务器决定什么是可接受的。
因此,在 Django 中,您可以做一些事情。
1)限制文件大小- 在您的设置中,您可以放置以下代码
# Add to your settings file
MAX_UPLOAD_SIZE = "1048576"
制作一个像下面这样的图像大小检查器,然后运行它来检查“image_field”的大小(名称可能会改变)。如果 'image_field' 太大,此代码将返回验证错误。
#Add to a form containing a FileField and change the field names accordingly.
from django.template.defaultfilters import filesizeformat
from django.utils.translation import ugettext_lazy as _
from django.conf import settings
def check_image_field_size(self):
content = self.cleaned_data.get('image_field')
if content._size > settings.MAX_UPLOAD_SIZE:
raise forms.ValidationError(_('Please keep filesize under %s. Current filesize %s') % (filesizeformat(settings.MAX_UPLOAD_SIZE), filesizeformat(content._size)))
return content
资源
这将防止上传的文件大小超过 1MB,期间。
2)调整图像大小- 使用 PIL (Pillow) 调整图像大小。
import StringIO
from PIL import Image
from io import BytesIO
# get the image data from upload
image_field = self.cleaned_data.get('image_field')
image_file = StringIO.StringIO(image_field.read())
image = Image.open(image_file)
# like you said, cut image dimensions in half
w, h = image.size
image = image.resize((w/2, h/2), Image.ANTIALIAS)
# check if the image is small enough
new_img_file = BytesIO()
image.save(new_img_file, 'png')
image_size = new_img_file.tell()
# if the image isn't small enough, repeat the previous until it is.
3)有损压缩图像
# assuming you already have the PIL Image object (im)
quality_val = 90
new_img_file = BytesIO()
im.save(filename, 'JPEG', quality=quality_val)
image_size = new_img_file.tell()
# if image size is too large, keep repeating
客户端
真的,客户端只会让用户的事情变得更简单。您可以尝试在客户端实现这些东西,但如果您依赖它,总是有可能有人绕过您的客户端设置并上传 10TB 大小的“图像”(有些人只是想看着世界燃烧)。
1) 调整大小或压缩 - 与上面相同,但使用 Javascript 或 Jquery。
2) 裁剪——JCrop是我以前用过的一个库。这需要一些工作,但它很有用。您可以帮助用户将图像裁剪为更合适的尺寸,并让他们对图像在新分辨率下的外观有更大的控制权。
2) 有用的消息 - 如果用户上传的图片太大,请告知他们。
来源
调整大小后如何在 python-pillow 中获取图像大小?
如何使用 PIL 调整图像大小并保持其纵横比?
如何调整 Python 图像库中调整大小图像的质量?