Cod-nes Posted June 13, 2009 Report Share Posted June 13, 2009 (edited) I keep get a fatal error and I don't know why. Fatal error: Call to undefined function imagejepg() in E:\mowes_portable\www\thumb\index.php on line 18 <?phperror_reporting(E_ALL);if(isset($_POST['thumb'])){if (($_FILES["file"]["type"] == "image/gif") || ($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/pjpeg") || ($_FILES["file"]["type"] == "image/png")){ $name=strtolower($_FILES["file"]["name"]); move_uploaded_file($_FILES["file"]["tmp_name"],$name); if(($_FILES["file"]["type"] == "image/jpeg") || ($_FILES["file"]["type"] == "image/pjpeg")) { $img = imagecreatefromjpeg($name); $width = imagesx($img); $height = imagesy($img); $thumbwidth = 200; $newheight = round($height * (round($thumbwidth/$width,5))); $tmp_img = imagecreatetruecolor($thumbwidth,$newheight); imagecopyresized($tmp_img,$img,0,0,0,0,$thumbwidth,$newheight,$width,$height); imagejepg($tmp_img,"th.$name",100); } unlink($name);}else{die("Not valid file format.");}echo $_FILES["file"]["tmp_name"];}else{$text= <<<TEXT<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html> <head> <title>Thumbnail Generator</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <form enctype="multipart/form-data" action="index.php" method="post"> <div>Images must be gif, png, or jpg.</div> <input type="hidden" name="thumb" value="gen"> <input type="file" name="file"><br> <input type="submit" value="Generate Thumbnail"> </form> </body></html>TEXT;echo $text;}?> PHP Version 5.2.8gdGD Support enabledGD Version bundled (2.0.34 compatible)FreeType Support enabledFreeType Linkage with freetypeFreeType Version 2.1.9T1Lib Support enabledGIF Read Support enabledGIF Create Support enabledJPG Support enabledPNG Support enabledWBMP Support enabledXBM Support enabled Edited June 13, 2009 by Cod-nes Link to comment Share on other sites More sharing options...
chibineku Posted June 13, 2009 Report Share Posted June 13, 2009 it's jpeg, not jepg... Link to comment Share on other sites More sharing options...
Cod-nes Posted June 13, 2009 Author Report Share Posted June 13, 2009 Thanks. ^^ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now