访问 Django 模板中 ImageField 上的图像尺寸?
我的模型中有 ImageField
,我可以在模板中显示图像。但是,如何检索图像的高度和宽度?
I have ImageField
in my model and I'm able to display the image in a template. However, how do I retrieve the image's height and width?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅 ImageField 的文档。
所以只需执行以下操作:
See the documentation for ImageField.
So just do the following:
就我而言,为了使
width
和height
字段正常工作,我需要设置width_field
和ImageField
的height_field
>例如
In my case, for the
width
andheight
fields to work, I need to set thewidth_field
andheight_field
of theImageField
E.g.