I'm working with the Magick++ API and I'm trying to figure out how do I read in one image, and perform two different kinds of effects and save each out into a different image. Right now what I'm doing is reading in an image and warp/distort it along a circle path and saving that new one (image-warped.ext). This works great. My next step now is to also create another image that's a mirror flop. So read in a 400x400 pixel image, flop it along the right edge so I end up with an image that's 800x400 and then save that out.
How do I do that with the same original image object I just read in? I can't imaging having to go back and reread the original image again, after all it's already in memory. Or am I mistaken?
Thanks!