Up until this point you could do image composition from the "convert" command, allowing you to generate some very complex image processing techniques all in the one command.
However you could not specify the extra numerical arguments needed for special compositions, such as "Blend" "Dissolve" and "Displace". That is you either had to do this using DIY methods, or use the "composite" command with its special composition options.
As of now, you can specify the extra arguments needed for these compositions by setting them using the special 'meta-data' set operator -set option:compose:args {args}
Yes I know this is long, but it is now available. For Example you can now overlay a 'dissolved' image in convert using...
Code: Select all
convert logo: rose: -geometry +200+60 \
-compose blend -set option:compose:args 60 -composite \
show:
another part less blurred, according to a pre-prepared mapping image.
For examples of this method see
http://www.imagemagick.org/Usage/compose/#blur
But for a practical example have a look at the "Tilt-Shift" example
http://www.imagemagick.org/Usage/photos/#tilt_shift
where you can convert a photo of a real-life scene into something take looks like a photo of a detailed realistic model of that same scene.
The work continues!