gpt4 book ai didi

python-3.x - 使用 pypng 将 24 位 PNG 文件转换为 8 位颜色索引图像

转载 作者:行者123 更新时间:2023-12-03 08:44:40 30 4
gpt4 key购买 nike

我正在尝试编写一个 python 脚本,该脚本接受标准 24 位 png 并将其转换为 8 位 png 以实现更好的压缩。看起来 pypng 可以做到这一点,但我不太清楚如何使用它。图像处理对我来说是一个新领域,所以这可能看起来很愚蠢。我目前有这个:

r=png.Reader(<myfile>)
test = r.asRGBA8()

这给了我元组作为返回(我相信图像的层)。但是我似乎无法将其写入或保存回图像。我缺少什么? Here's a test image

最佳答案

原始答案

我认为这符合您的要求:

from PIL import Image

# Load image
im = Image.open('logo.png')

# Convert to palette mode and save
im.convert('P').save('result.png')

更新答案

我无法找到一种方法让 PIL 制作出合理的调色板图像,但可以通过其他几种方法来实现......

使用魔杖,如下所示:

#!/usr/bin/env python3

from wand.image import Image

with Image(filename='logo.png') as img:
img.quantize(number_colors=256, colorspace_type='lab', treedepth=0, dither=False, measure_error=False)
img.save(filename='result.png')

或者,通过在命令行中调用 ImageMagick 并执行以下操作:

magick logo.png -colors 255 png8:logo8.png      # use "convert" in place of "magick" if using v6

enter image description here

最新答案

好吧,我找到了一种让 PIL/Pillow 做得更好的方法,正如预期的那样,它利用了通常不内置于 Pillow 中的 libimagequant (至少在我在 macOS 上)是)。代码如下所示:

#!/usr/bin/env python3

from PIL import Image

# Load image
im = Image.open('logo.png')

# Convert to palette mode and save. Method 3 is "libimagequant"
im.quantize(colors=256, method=3).save('result.png')

在 macOS 上使用 libimagequant 构建 PIL/Pillow 的步骤如下 - 它们在其他平台上会有所不同,但您应该能够了解总体思路并进行调整:

pip uninstall pillow           # remove existing package
brew install libimagequant
brew install zlib
export PKG_CONFIG_PATH="/usr/local/opt/zlib/lib/pkgconfig"
pip install --upgrade Pillow --global-option="build_ext" --global-option="--enable-imagequant" --global-option="--enable-zlib"

关键字:Python、图像处理、PIL/Pillow、libimagequant、macOS、量化、量化。

关于python-3.x - 使用 pypng 将 24 位 PNG 文件转换为 8 位颜色索引图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61956094/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com