[TYPO3-debian] Typo3 can't find graphicsmagick

Michael Stucki michael at typo3.org
Tue Jan 31 11:47:24 CET 2006


Hi Steffen,

> Then compare your localconf.php settings for Graphic manipulations:
>
> $TYPO3_CONF_VARS["GFX"]["gdlib_png"] = '1';
> $TYPO3_CONF_VARS["GFX"]["gdlib_2"] = '1';
> $TYPO3_CONF_VARS["GFX"]["im_imvMaskState"] = '1';
> $TYPO3_CONF_VARS["GFX"]["im_mask_temp_ext_gif"] = '1';
> $TYPO3_CONF_VARS["GFX"]["im_negate_mask"] = '1';
> $TYPO3_CONF_VARS["GFX"]["im_no_effects"] = '1';
> $TYPO3_CONF_VARS["GFX"]["im_path"] = '/usr/bin/';
> $TYPO3_CONF_VARS["GFX"]["im_v5effects"] = '1';
> $TYPO3_CONF_VARS["GFX"]["thumbnails_png"] = '1';
> $TYPO3_CONF_VARS["GFX"]["TTFdpi"] = '96';
> $TYPO3_CONF_VARS["GFX"]["im_combine_filename"] = 'combine';
> $TYPO3_CONF_VARS["GFX"]["im_version_5"] = 'gm';
> $TYPO3_CONF_VARS["GFX"]["imagefile_ext"] =
> 'gif,jpg,jpeg,tif,bmp,pcx,tga,png,pdf,ai';

This is far too much! GraphicsMagick enabling is really easy:

$TYPO3_CONF_VARS["GFX"]["im_path"] = '/usr/bin/';
$TYPO3_CONF_VARS["GFX"]["im_version_5"] = 'gm';

Plus, if you want to enable the GD library, you will additionally need these 
settings. They have nothing to do with IM/GM!

$TYPO3_CONF_VARS["GFX"]["gdlib_png"] = '1';
$TYPO3_CONF_VARS["GFX"]["gdlib_2"] = '1';
$TYPO3_CONF_VARS["GFX"]["TTFdpi"] = '96';

Regards, michael


More information about the TYPO3-debian mailing list