Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got some PNG images with transparency, and I need to create versions with the image layer composed onto a white background. I've tried various things with Image Magick "convert" operations, but either nothing happens at all or I get an error. I don't want to go to an intermediate JPG form because I don't want the artifacts. Of course it's easy to do this in Gimp or Photoshop or whatever, but I'd really rather script it from the command line because there are many of these things.

An example of a non-working Image Magick command is:

convert img1.png -background white -flatten img1-white.png

That results in an error.

Thanks!

share|improve this question

4 Answers

up vote 22 down vote accepted

this work for me

convert -flatten img1.png img1-white.png
share|improve this answer
Somehow this doesn't work for me... I tried "-transparent-color white", but got an exception/warning. – William Niu Aug 9 '10 at 4:49
It turns out that I need to set the -background to white as well. I also had to download the colors.xml, which was missing. – William Niu Aug 9 '10 at 4:59
Check out my answer below. It was added 2 years after this one. – Rok Kralj Apr 3 at 8:34

Flattening image and applying background image is straight forward in ImageMagick

However, order of the commands is very important

To apply any background on a transparent image and flatten it, first apply the background than flatten it. The reverse doesn't work.

$ convert sourceimage.png -background BackgroundColor -flatten destinationimage.png
share|improve this answer
Thanks, but that's exactly what I did in the question ... – Pointy Jun 6 '11 at 15:21

Just call your conversion script with:

-alpha off

Example:

convert image.png -alpha off image.png
share|improve this answer

Welp it looks like my decision to install "graphics magick" over "image magick" has some rough edges - when I reinstall genuine crufty old "image magick", then the above command works perfectly well.

edit, a long time later — One of these days I'll check to see if "graphics magick" has fixed this issue.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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