New to this and i have a hard time finding documentation on MSL.
How do i use the caption: option in an MSL script? can i use the gravity option with it too?
I tried something like this but it doesn't wordwrap.
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<group>
<image id="picture">
<read filename="http://rsportscars.com/foto/12/amdbs08_01.jpg"/>
<frame geometry ="10x10+4+4" fill="red" />
<resize geometry="500x700"/>
</image>
<image id="title" size="1500x100" >
<read filename="xc:transparent" />
<annotate pointsize="75" x="75%" y="75%" fill="darkcyan" text="This line of text has to fit in the box i just created!" />
</image>
<image id="canvas" size="1600x900">
<read filename="xc:#000000" />
<composite image="picture" geometry="+50+150"/>
<composite image="title" geometry="+50+10"/>
</image>
<write filename="folder.jpg"/>
</group>
Kees