--- class.tslib_gifbuilder.php.orig 2005-04-07 14:52:20.000000000 +0200 +++ class.tslib_gifbuilder.php 2005-04-07 14:55:45.538586808 +0200 @@ -329,7 +329,10 @@ $XY = $this->XY; // Gif-start - $this->im = imagecreate($XY[0],$XY[1]); + if ($GLOBALS['TYPO3_CONF_VARS']['GFX']['gdlib_2']) + $this->im = imagecreatetruecolor($XY[0],$XY[1]); + else + $this->im = imagecreate($XY[0],$XY[1]); $this->w = $XY[0]; $this->h = $XY[1];