adrinux on wrote...
| Hello,
|
| convert input.png +clone -modulate 110,0 -fill '#A1ECFF' -tint 100 +append
| output.png
|
| but clone causes imagemagick to complain that 'clone requires a sequence'.
| I've played with separate, but only managed to use that on certain channels,
| not the whole image. And even then the append just seems to replace the
| image instead of adding to the original.
|
You need to use clone and the commands in parenthesis, or the later
oerations will be applied to BOTH images!!!
convert input.png \
\( +clone -modulate 110,0 -fill '#A1ECFF' -tint 100 \) \
+append output.png
| So is there anyway to copy modify and append an image to its original using
| just convert, and all in one command?
|
See above...
| Or do I need to accept that this requires multiple convert operations at
| least, and quite possibly use use of other tools, such as montage?
|
No it does not. Over the course of IM v6 releases people have been
requesting and checking and making improvements so that fewer convert
commands are needed to do any set of image modifications.
There are some things that still need multiple commands (usally because
they need to use image information about previosu operatoration), but on
the whole we have been successful.
Only one command is needed.
Anthony Thyssen ( System Programmer ) <[EMAIL PROTECTED]>
-----------------------------------------------------------------------------
Don't you just hate those long signature files? I mean, there oughta
be a law. If I were in control, .sigs would get cut off if they were
-----------------------------------------------------------------------------
Anthony's Home is his Castle http://www.cit.gu.edu.au/~anthony/
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users