Page 1 of 1

Re: MagickTextureImage is not doing anything..wtf?

Posted: 2008-11-12T07:57:26-07:00
by magick
Are you using ImageMagick 6.4.5? If so there is a transient texture bug which we have a patch for. The patch release will be available within the week.

Re: MagickTextureImage is not doing anything..wtf?

Posted: 2008-11-12T08:21:58-07:00
by el_supremo
I don't know why MagickTextureImage doesn't do anything but you can do the same thing this way:

Code: Select all

	$magickWand=NewMagickWand();
	
	MagickNewImage($magickWand,400, 400, 'white');           
	MagickReadImage($magickWand,'tile:someTexture.jpg');
	             
	MagickWriteImage($magickWand,'somefilename.png'); 
Pete