Hello, I hope someone can help me, I have imagemagic, I would like to create an icon of several png images but I can't do it, I made a button and the most I can do is create an icon for each image I select and I would like it to create a single icon with all the images I select, thanks.
ImageMagick's forum might have more people who know the answer:
I'd also give more detail on how you want the images to be combined, as it could be done in many ways.
Here's an appetizer to get you started:
@nodeselect
"/programfiles\ImageMagick\magick.exe" montage {allfilepath} -geometry 200x200+20+20 {destpath}{date|yyyyMMdd}-{time|HHmmss}.png
Thanks for your help, I solved it, not as I would like but I can get this task done
I found this command on stack overflow that seems to work for resizing a single image to multiple embedded sizes:
magick convert -background transparent "Input.png" -define icon:auto-resize=16,24,32,48,64,72,96,128,256 "Output.ico"
If you have specific files you want to use at each size, this seems to work:
magick convert -background transparent Icon-32.png Icon-64.png Icon-128.png Icon-256.png Output.ico
thanks for your help