gpt4 book ai didi

python - Wand 中的相框功能在 Mac 上不起作用?

转载 作者:行者123 更新时间:2023-12-01 07:29:36 28 4
gpt4 key购买 nike

我正在尝试使用 Python Wand 中的 image.frame 函数在图像周围添加边框:

image.frame(width=2, height=2)

这似乎在 Raspberry Pi 上工作正常,但在 Mac 上将图像转换为灰度。有什么线索吗?

from wand.image include *
from wand.display include *

# tryme.jpg is color jpg image
image=Image(filename="tryme.jpg")
image.frame(width=2, height=2)

display(image)

应显示周围有 2 像素边框的彩色图片。

最佳答案

这对我来说在使用 Python Wand 0.5.5 的 ImageMagick 6.9.10.57 Q16 Mac OSX Sierra 上工作得很好。请注意,我的语法与您的不同。

enter image description here

#!/bin/python3.7

from wand.image import Image
from wand.display import display

with Image(filename='lena.jpg') as img:
img.frame(width=10, height=10)
img.save(filename='lena_frame.jpg')
display(img)


enter image description here

添加:

根据上面提出的问题,ImageMagick 7 实际上失败了。我已向 Python Wand 开发人员报告了一个错误。

关于python - Wand 中的相框功能在 Mac 上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57275316/

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