Petr Gajdos changed bug 1190762
What Removed Added
Flags   needinfo?(felix.niederwanger@suse.com)

Comment # 4 on bug 1190762 from
I would follow upstream and remove the gd/gd2 support for now, if this is not
much work for openQA guys, as this is more future proof attitude. For PHP code:

<?php
// Load the gd image
$im = @imagecreatefromgd('./test.gd');

// Test if the image was loaded
if(!$im)
{
     die('Unable to load gd image!');
}

// Do image operations here

// Save the image
imagegd($im, './test_updated.gd');
imagedestroy($im);
?>

I get:

:/ # php test.php
Unable to load gd image!:/ #

when php is built against current 2.3.3 as in Factory. Might be that the GD/GD2
support will be requested to be added back temporarily, though.


You are receiving this mail because: