How can I write multiple images with one command line (convert)?
In MSL it works like this:
Code: Select all
<image>
<read filename="source.bmp" />
<draw ...something... />
<write filename="img1.bmp" />
<draw ...something else... />
<write filename="img2.bmp" />
</image>
Is this possible with one command line with convert?
Thanks.