clarkk
clarkk

Reputation: 1

Creating an image with a transparent background in ImageMagick

how can you make a new image with a transparent background?

convert -size 120x22 gfx/gen/tmp.png

Upvotes: 8

Views: 3679

Answers (1)

aorcsik
aorcsik

Reputation: 15552

Like this:

convert -size 122x22 xc:none gfx/gen/tmp.png

Upvotes: 11

Related Questions