Thursday 13 September 2007 9:13:40 am
The fact that PHP functions ImageTTFText and ImageTTFBBox are unavailable will block the usage of "texttoimage" template operator. It should not break the rest of the image system. It seems that ImageMagick is missing in your installation, or not accessible by EZP.
If ImageMagick is well installed, check your /settings/override/image.ini.append.php (it's far better than in /settings/image.ini, you should never directly alter /settings/ ini files, rather override them) and put this in it :
[ImageMagick]
IsEnabled=true
ExecutablePath="c:/path/to/imagemagick" Executable=convert.exe Beware : ImageMagick installation path should not contains any blank !
If you don't want to use ImageMagick, then cut it off in /settings/override/image.ini.append.php :
[ImageMagick] IsEnabled=false
GD2 should be used instead of it. If you're image is still broken, check that your have GD2 php extension. If you are under linux, your should also check that your graphics libs (GD2 or ImageMagick) is compiled with JPEG and PNG support (if not, you will certainly have to get libjpeg and libpng packages)
|