限制 ImageFileField 数据的尺寸

发布于 2024-08-26 10:20:58 字数 168 浏览 2 评论 0原文

我正在尝试使 ImageFileField 只接受设定尺寸的图像文件。我在这里找到了另一篇文章,建议劫持表单中的“clean”方法,但我想知道创建自定义字段类型是否会更简单?

有谁有我可以使用的任何代码片段来执行此操作吗?我根本不想调整图像文件的大小,只要大小正确就按原样上传。

非常感谢!

I'm trying to make it so that the ImageFileField only accepts image files of a set dimension. I found another post on here which suggest hijacking the 'clean' method in a form, but I was wondering if it would be simpler to create a custom field type instead?

Has anyone got any code snippets which I might be able to use in order to do this? I don't want the image files to be resized at all, just uploaded as they are if they are the correct size.

Much appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一桥轻雨一伞开 2024-09-02 10:20:58

这是 ImageField 表单字段的(最新)调整大小版本,它设置了最大大小。您也许可以从中获得灵感,只接受某些图像尺寸(即,不触发调整大小,而是让字段抱怨)。

http://www.djangosnippets.org/snippets/1966/

希望对

史蒂夫有帮助

This is a (recent) resizing version of the ImageField form field which sets a max size. You might be able to take inspiration from it for accepting only certain image dimensions (ie, instead of triggering resizing, make the field complain).

http://www.djangosnippets.org/snippets/1966/

Hope that helps

Steve

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文