Replace transparency in PNG images with white background

后端 未结 16 724
再見小時候
再見小時候 2020-11-29 14:48

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 Magi

16条回答
  •  再見小時候
    2020-11-29 15:38

    This is not exactly the answer to your question, but I found your question while trying to figure out how to remove the alpha channel, so I decided to add this answer here:

    If you want to remove alpha channel using imagemagick, you can use this command:

    mogrify -alpha off ./*.png
    

提交回复
热议问题