skip to Main Content

<wand.img> saving several png files as photoshop psd file converts the color into grayscale

from wand.image import Image with Image(filename="base.png") as img: img.read(filename="background.png") img.read(filename="image.png") img.read(filename="sub_box.png") img.read(filename="cta_box.png") img.read(filename="sub_text.png") img.read(filename="cta_text.png") img.save(filename="final.psd") I wrote this code to stack png images into a psd file The code does work, the file has all the layers, but the color…

VIEW QUESTION
Back To Top
Search