ID: 12894
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Bogus
Status: Feedback
Bug Type: GD related
Operating System: i686-pc-linux-gnu
Old PHP Version: 4.0.6
PHP Version: 4.0.7-dev (latest CVS)
New Comment:

I can't get your scripts to crash.
Could you please generate a GDB backtrace of the crash?

--Jani


Previous Comments:
------------------------------------------------------------------------

[2001-08-22 12:13:54] [EMAIL PROTECTED]

Sorry, my submitted PHP Version was wrong. I mean 4.0.7-dev from the latest CVS.

The script crash under cvs version.

Regards,

Steve

------------------------------------------------------------------------

[2001-08-22 10:57:00] [EMAIL PROTECTED]

I doubt that you could crash PHP by using functions
that don't exist..

Both imageGD2 and ImageCreateFromGD where added
AFTER PHP 4.0.6 was released. So they are only
available in the CVS.

And with the latest CVS version, both of your
scripts work just fine.

--Jani


------------------------------------------------------------------------

[2001-08-22 09:20:30] [EMAIL PROTECTED]

Hi,

the follow 2 different scripts using ImageCreateFromGD & ImageGD2
and crashes PHP.

(using gd2.0.1 and 4.0.6)

<?php
$im_main=ImageCreateFromPNG("./images/some_picture.png");

ImageGD2($im_main,"./images/some_picture.gd2");

ImageDestroy($im_main);
?>

// the gd image is created with pngtogd from the gd lib package.

<?php
        $im_main=ImageCreateFromGD("./images/some_picture.gd");
        ImagePNG($im_main,"./images/some_picture.png");
        ImageDestroy($im_main);
?>

Regards,

-- 
Steve

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=12894&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to