在Python枕头中设置图像分辨率
问题描述
我正在使用Python Pillow修改图像。每当我保存jpeg时,内部分辨率都设置为72dpi。我正在考虑如何将其设置为不同的值。我意识到这只是一个数字,在很多方面都没有意义。我的动机是当我将图像读入Photoshop时,让后续工作变得更容易。
解决方案
我认为您可能正在寻找dpi。
from PIL import Image, ImageDraw
# Make a white background with a blue circle, just for demonstration
im = Image.new('RGB', (800, 600), (255, 255, 255))
draw = ImageDraw.Draw(im)
draw.ellipse((200, 100, 600, 500), (32, 32, 192))
# the default
im.save("image_72.jpeg")
# explicit dpi for high resolution uses like publishing
im.save("image_300.jpeg", dpi=(300, 300))
这两个图像包含相同的像素,并且在磁盘上具有相同的大小,但编码为不同的图像大小和分辨率。许多图像浏览器将以相同的方式显示它们,但Gimp和Photoshop等高端软件可以检测出其中的差异。
相关文章