How to make a PNG Transparent with their Alpha image?
Posted: 2015-10-05T02:26:36-07:00
Hi everyone, so I'm trying to make a PNG picture background transparent already having its original Alpha 'layer'.
So all I found was this code.
But it doesn't works, the following message appears; -The system cannot find message text for message number 0x234a in the message file for Application-. The original image name is '1.png' and the Alpha one is '2.png' am I doing something wrong? should I rename the pictures or change the code somehow? Thank you.
So all I found was this code.
Code: Select all
for %%f in (i\*.png) do convert %%f "i\%%~nf_A.png" -alpha Off -compose CopyOpacity -composite "out\%%~nf_out.png"