Clone question
Posted: 2018-04-01T03:11:12-07:00
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.
Error "No such image -clone" I would have thought the original image is -clone 0 and the resized version is -clone 1
Just get the final 300px wide monochrome image
This is the result I am looking for using mpr although last night I could not get that to work either!
Code: Select all
convert rose: ( -resize 500x500 +repage ) ( -clone 1 -resize 300x300 +repage -monochrome ) -layers merge test.jpg
Code: Select all
convert rose: ( -resize 500x500 +repage ) ( -clone 0 -resize 300x300 +repage -monochrome ) -layers merge test.jpg
This is the result I am looking for using mpr although last night I could not get that to work either!
Code: Select all
convert rose: -write mpr:image +delete ( mpr:image -resize 500x500 +repage ) ( mpr:image -resize 300x300 +repage -monochrome ) -layers merge test.jpg