doforumda Posted February 26, 2010 Share Posted February 26, 2010 hi i am not sure what the problem is with the code below. Everytime i run this code it displays this http://localhost/fileupload/imageResizer.php and i want to display the image. what is the problem please reply <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> </head> <body> <?php $filename = 'test.jpg'; $percent = 0.5; header('Content-type: image/jpeg'); list($width, $height) = getimagesize($filename); $new_width = $width * $percent; $new_height = $height * $percent; $image_p = imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromjpeg($filename); imagecopyresampled($image_p, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_p, null, 100); ?> </body> </html> Link to comment https://forums.phpfreaks.com/topic/193423-need-help-with-imagecopyresampled/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.