I've downloaded ImageMagick 6.6.5-9 and tried process following MSL code in conjure. Unfortunately conjure displays error: conjure.exe: unrecognized image colorspace `rgb' @ error/msl.c/MSLStartElement/5984. This MSL code works in older version 6.5.4-9 in which I tested it before.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<image>
<image>
<read filename="V:\\Foto\\2008-01-26\\001.JPG" />
<get width="base-width" height="base-height" />
<resize geometry="840x660>" />
<get width="dest-width" height="dest-height" />
<set colorspace="rgb" />
<print output="1/3 V:\\Foto\\2008-01-26\\001.JPG\n" />
<print output=" resizing from %[base-width]x%[base-height] to %[dest-width]x%[dest-height]\n" />
<print output=" saving as V:\\Foto\\2008-01-26\\pro_web\\001.jpg\n" />
<write filename="V:\\Foto\\2008-01-26\\pro_web\\001.jpg" quality="95" />
</image>
<image>
<read filename="V:\\Foto\\2008-01-26\\002.JPG" />
<get width="base-width" height="base-height" />
<resize geometry="840x660>" />
<get width="dest-width" height="dest-height" />
<set colorspace="rgb" />
<print output="2/3 V:\\Foto\\2008-01-26\\002.JPG\n" />
<print output=" resizing from %[base-width]x%[base-height] to %[dest-width]x%[dest-height]\n" />
<print output=" saving as V:\\Foto\\2008-01-26\\pro_web\\002.jpg\n" />
<write filename="V:\\Foto\\2008-01-26\\pro_web\\002.jpg" quality="95" />
</image>
<image>
<read filename="V:\\Foto\\2008-01-26\\003.JPG" />
<get width="base-width" height="base-height" />
<resize geometry="840x660>" />
<get width="dest-width" height="dest-height" />
<set colorspace="rgb" />
<print output="3/3 V:\\Foto\\2008-01-26\\003.JPG\n" />
<print output=" resizing from %[base-width]x%[base-height] to %[dest-width]x%[dest-height]\n" />
<print output=" saving as V:\\Foto\\2008-01-26\\pro_web\\003.jpg\n" />
<write filename="V:\\Foto\\2008-01-26\\pro_web\\003.jpg" quality="95" />
</image>
</image>
Thanks for reply