我有个问题。以下代码确实有效,它结合了两个图像。但是最终合成中的背景图像是完全黑色的。
任何猜测,这里有什么问题?
from wand.image import Image
with Image(filename=bgimage) as back:
with Image(filename=qrcode) as front:
with Image(width=back.width, height=back.height) as new_image:
new_image.composite(front, left=1000, top=900)
new_image.save(filename=qr_output)