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?".
Convert and composite do not allow working on a directory of images. see mogrify. But I am not sure mogrify will allow the composite. If not, then you likely will need to write a script to loop over your images.
for %%F in (*.jpg) do composite -gravity SouthEast -geometry +10+10 stamp.png %%F %%F
Pete
Sorry, my ISP shutdown all personal webspace so my MagickWand Examples in C is offline.
See my message in this topic for a link to a zip of all the files.