Re: script don't work
Posted: 2007-07-15T14:10:05-07:00
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:
Adjust the size and colour of the image to suit.
Pete
Code: Select all
PixelSetColor($pwand,"white");
MagickNewImage($resource,100,60,$pwand);
Pete