Fatal error: Call to undefined function imagecreatefromjpeg()

windows

Guest
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...
SeshuFirst; have you read what the manual says about installing theimage extension on whatever system it is that you use?Do you have the gd library installed on your server? Here is a link to it GD Library (<!-- m --><a class="postlink" href="http://www.boutell.com/gd/">http://www.boutell.com/gd/</a><!-- m -->) also you can do another check to see what version you currently have with the following script
<?php
var_dump(gd_info());
?>
 
Back
Top