0
내가 4 개 픽셀 이미지를 만들려고하고있는 지팡이 이미지를 만들 수 있습니다 화이트 색상의어떻게 파이썬
코드 :
import wand.image
red = wand.image.Color('rgb(255,0,0)')
green = wand.image.Color('rgb(0,255,0)')
blue = wand.image.Color('rgb(0,0,255)')
white = wand.image.Color('rgb(255,255,255)')
myImage = wand.image.Image(width=2,height=2)
with wand.image.Image (myImage) as img:
img[0][0] = red
img[0][1] = blue
img[1][0] = green
img[1][1] = white
img.save(filename='out.png')
그러나 그것은 단지 투명한 png
만듭니다. 내가 도대체 뭘 잘못하고있는 겁니까?
생명의 은인, 들으 – Tom