访问 Django 模板中 ImageField 上的图像尺寸?

发布于 2024-10-30 05:37:00 字数 67 浏览 0 评论 0原文

我的模型中有 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 技术交流群。

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

发布评论

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

评论(2

标点 2024-11-06 05:37:00

请参阅 ImageField 的文档。

除了特殊属性之外
可用于 FileField,
ImageField也有高度和宽度
属性。

所以只需执行以下操作:

<img src="{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}"/>

See the documentation for ImageField.

In addition to the special attributes
that are available for FileField, an
ImageField also has height and width
attributes.

So just do the following:

<img src="{{ image.url }}" width="{{ image.width }}" height="{{ image.height }}"/>
永言不败 2024-11-06 05:37:00

就我而言,为了使 widthheight 字段正常工作,我需要设置 width_fieldImageFieldheight_field >

例如

class Product(models.Model):
    image = models.ImageField(width_field='image_width', height_field='image_height')
    image_width = models.IntegerField()
    image_height = models.IntegerField()

In my case, for the width and height fields to work, I need to set the width_field and height_field of the ImageField

E.g.

class Product(models.Model):
    image = models.ImageField(width_field='image_width', height_field='image_height')
    image_width = models.IntegerField()
    image_height = models.IntegerField()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文