Page 1 of 1

Re: script don't work

Posted: 2007-07-15T14:10:05-07:00
by el_supremo
You didn't create an image to draw the text on, you only had an empty magick wand. Add this between the NewPixelWand and PixelSetColor calls:

Code: Select all

PixelSetColor($pwand,"white");
MagickNewImage($resource,100,60,$pwand);
Adjust the size and colour of the image to suit.

Pete