Bug #14537 » class.tslib_gifbuilder.php-t3_380b1.patch
class.tslib_gifbuilder.php 2005-04-07 14:55:45.538586808 +0200 | ||
---|---|---|
$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];
|
||