使用 django-imagekit 调整上传时的图像大小
我正在使用 imagekit 来处理上传图像的自定义尺寸。虽然它可以很好地创建自定义尺寸的图像,但我想使用 imagekit 在上传时调整原始图像的大小。这可能吗?
I am using imagekit to handle custom size of uploaded images. While it works fine for creating custom size images with this, I'd like to use imagekit to resize the original image on upload. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请点击上面的链接。
根据需要为原始图像创建处理器(调整大小、增强等)。查看 imagekit wiki 的示例
使用以前的处理器为此原始图像创建 ImageSpec。将 pre_cache 保留为默认值(false)
将该 ImageSpec 添加到您的 IKoptions ImageModel 预处理器中。
preprocessor_spec = Original
follow the link above.
Create processors as you like for original image (resize, enhance, etc). Look imagekit wiki for examples
Create your ImageSpec for this original image with those previously processors. Leave pre_cache as default (false)
Add that ImageSpec to your IKoptions ImageModel preprocessor.
preprocessor_spec = Original
我相信更新的答案是 ProcessedImageField。
参考资料取自@matthew。
I believe the updated answer is ProcessedImageField.
Reference taken from @matthew.