Search found 2 matches

by Zeneric
2019-03-21T12:03:05-07:00
Forum: Users
Topic: Batch Merge Alpha and RGB images together (same filenames - different extensions)
Replies: 2
Views: 3908

Re: Batch Merge Alpha and RGB images together (same filenames - different extensions)

Code: Select all

for /r %g in (*.png) do magick convert "%~dpng.png" "%~dpng.tiff" -alpha off -compose CopyOpacity -composite "%~dpng.tga"
Works.
Thank you for answering.
by Zeneric
2019-03-21T10:58:04-07:00
Forum: Users
Topic: Batch Merge Alpha and RGB images together (same filenames - different extensions)
Replies: 2
Views: 3908

Batch Merge Alpha and RGB images together (same filenames - different extensions)

I have thousands of Alpha (.tiff) and RGB (.png) images I need to merge together and output to .tga format with alpha channel. This command works for merging 2 images into 1: magick convert "a.png" "a.tiff" -alpha off -compose CopyOpacity -composite "a.tga" How do I batch it on thousands of images ...