使用 PIL 优化 .png 图像
我需要的只是创建一个具有透明背景的 .png 图像,在其上绘制一些黑色文本并使用 img.save('target.png', option='optimize')
保存它
看起来就像PIL自动以32位模式保存.png图像一样。我可以在保存之前降低颜色深度,同时又不会使输出图像看起来更糟糕吗?由于它只包含黑色文本和透明背景,我认为减少颜色深度会大大减小文件大小。
All I need is to create a .png image with transparent background, draw some text in black on it and save it using img.save('target.png', option='optimize')
It looks like PIL saves .png images in 32-bit mode automatically. Can I reduce the color depth while not making the output images look much worse before saving? Since it contains only black text and transparent background, I think reducing the color depth would greatly reduce file size.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RGBA 模式是唯一支持透明度的模式,并且它必须是 32 位:
我建议您使用非透明 1 模式存储图像,并使用图像本身作为蒙版。如果您将模式 1 的图像作为图像上的蒙版,黑色像素将保留,白色像素将是透明的。 这将占用 32 倍的空间,且不会丢失任何信息。
它看起来像这样:
其中
bw_image
是黑白文本。The
RGBA
mode is the only mode that supports transparency, and it is necessarily 32 bits:I would recommend you to store your image with a non-transparent 1 mode and use the image itself as a mask. If you give your image with mode 1 as a mask on your image, black pixels will stay and white ones will be transparent. This will take 32 times less space without any loss of information.
It will look something like this:
where
bw_image
is your black and white text.