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?".
With the code below I am expecting to get the coloured rose image resized with a monochrome version over it. I am more interested in getting the clone to work. My final image will have three different images with different effects layerd on each other. So I want to use the -resize 500x500 +repage image modified two more times.
Open parenthesis "(" starts a new empty image list. "-resize" will resize all the images in the current list, but at that point you have no images. IM v7 will reject that command. V6 will take a guess at what you really want. Perhaps you intended to "-clone 0" after the open parenthesis.
Then you "-clone 1", which only works if you have at least two images, because the first in numbered zero.