Click to See Complete Forum and Search --> : Fatal error: Call to undefined function imagecreatefromjpeg()


seshukumar_84k
12-23-2006, 06:29 AM
HI,
I am trying to work in image functions in php, but i got the error Fatal error: Call to undefined function imagecreatefromjpeg() .
Pls help me solving this.


Thanks in advance...
Seshu

Weedpacket
12-23-2006, 07:05 AM
First; have you read what the manual says about installing theimage extension on whatever system it is that you use?

Houdini
12-26-2006, 09:11 AM
Do you have the gd library installed on your server? Here is a link to it GD Library (http://www.boutell.com/gd/) also you can do another check to see what version you currently have with the following script
<?php
var_dump(gd_info());
?>