I have a 16x16 transparent png and I did

convert -rotate -45 a.png b.png

This rotated it and created a new image b.png which is of size 22x22 and which when I use against a background shows the original image (16x16) rotated with the underlying background but the new filling that came about shows up with a white background.

How is it possible to have the new filling too be transparent?

If that is not possible, than how can I have all the background of the new image be one color?

link|improve this question

77% accept rate
feedback

2 Answers

Use the -background option to specify a transparent color:

convert -background 'rgba(0,0,0,255)' -rotate 45 a.png b.png

link|improve this answer
feedback

I was also having the same issue, however I was using the command like so: "convert a.png -rotate 45 -background transparent b.png" --> it needed to be "convert -rotate 45 -background transparent a.png b.png" So, this actually helped a little, thanks :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.