django-photologue:如何将图像缩放到框并填充背景
我正在使用 django-photologue(使用 1pinax)并希望将图像缩放到框(100 像素 x 100 像素)。 肖像图像的高度应缩放至 100 像素,宽度应填充颜色。
I´m using django-photologue (with 1pinax) and want to scale images to a box (100px x 100px).
Portrait images should be scaled to height 100px and the width should be filled with a color.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 PIL 与变换矩阵一起使用。例如,以下
功能在单个操作中调整大小和裁剪。我个人更喜欢裁剪
而不是用颜色填充它,但您可以根据需要进行调整。
You can use PIL with a transformation matrix. For example, the following
function resize and crop in a single operation. Personally I prefer to crop
rather than fill it with a color, but you can adjust it to your needs.