Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
but its work only with 1 photo
i want to add watermark at all images who are in the same folder
all photos are: (*.png)
help me please.....
thanks in advance.
see mogrify with alpha compositing. This will work with the right choice of compose methods and always the same ONE watermark image. You can only do one composite in the mogrify command, so you will need to run mogifiy a second time for the second composite. The watermark image cannot be in the same folder unless it is a different image format than the images in the folder to be watermarked (i.e. a gif watermark and jpg or png images to be watermarked)
Otherwise, you will need to write a script loop over each image in the folder. That will depend upon what platform you use (Unix or Windows) and you have not said which one you use nor what version of IM you are using.