Hi,
I'm struggling to get imagecreatefrom jpeg to work correctly.
I'm running PHP 4.3.9 with GD bundled (2.0.28 compatible).
If I run this:
$myimage = imagecreatefrom jpeg("myfilenam e");
I get this error message:
Fatal error: Call to undefined function: imagecreatefrom jpeg() in....
If I run this:
$myimage = @imagecreatefro mjpeg("myfilena me");
My program crashes out.
Any ideas?
Thanks,
I'm struggling to get imagecreatefrom jpeg to work correctly.
I'm running PHP 4.3.9 with GD bundled (2.0.28 compatible).
If I run this:
$myimage = imagecreatefrom jpeg("myfilenam e");
I get this error message:
Fatal error: Call to undefined function: imagecreatefrom jpeg() in....
If I run this:
$myimage = @imagecreatefro mjpeg("myfilena me");
My program crashes out.
Any ideas?
Thanks,
Comment