gpt4 book ai didi

python - Wand Python 多尺寸图标

转载 作者:行者123 更新时间:2023-12-01 05:44:30 25 4
gpt4 key购买 nike

我正在尝试使用Wand创建一个多尺寸的 ico,但我没有找到任何关于此的内容,只有正常的转换,到 ico...我找到了“序列”:

https://wand.readthedocs.org/en/latest/roadmap.html

和序列看起来像我需要的,但我只看到尝试读取多个图像的示例,但没有看到如何创建,我是否遗漏了一些东西?还是不可能?

或者可以使用 PIL/PILLOW 吗?

最佳答案

您可以将单个图像append()Image.sequence列表中。例如:

from wand.color import Color
from wand.image import Image


with Image(width=32, height=32, background=Color('red')) as ico:
with Image(width=16, height=16, background=Color('green')) as s16:
ico.sequence.append(s16)
ico.save(filename='multisized.ico')

结果(multisized.ico):

multisized.ico

关于python - Wand Python 多尺寸图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16544399/

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