以不同的方式: 1)如何在不改变 python 的高度的情况下改变图像的宽度。 2)让宽高比变化,我怎样才能改变高度或宽度中的一个。(全部以像素为单位。) 3)图像是像素a b,我想将其更改为像素c d的图像。并且这些数字之间没有纵横比例关系。它们都是随机数。
提前致谢..
答案 0 :(得分:2)
您应该使用Pillow库:
from PIL import Image
image = Image.open("/path/to/my/file")
image.resize((c, d)) # You can make quality of higher priority than speed by adding Image.ANTIALIAS as a second argument.
image.save("/path/to/my/changed/file")