skru09 Posted April 15, 2010 Share Posted April 15, 2010 Hi, I have php page wherein I am retrieving images from the database and displaying them. The images are of different sizes hence i want to resize the images without them being distorted. I used the following code: <style type = "text/css"> .faculty-image { max-width: 99px; border: 1px solid #999; } * html .faculty-image { width: 99px; height: 100px} </style> <?php //connected to the db and retrieved the images $rep='<class = "/faculty-image/" />'; $image=str_replace("/>",$rep,$img); //have done the above as the image field retrieved is of the form <img src="/abc.jpg" title="abc" alt="abc" height="235" width="235" /> echo $image; ?> But the images are not displayed in an uniform manner. Please guide me on this.Thanks Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/ Share on other sites More sharing options...
litebearer Posted April 15, 2010 Share Posted April 15, 2010 In order not to have image distortion, you need to resize proportionately. FORCING both height and width will frequently result in distorted images. Might look here http://www.nstoia.com/toh/imageresize.php Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042555 Share on other sites More sharing options...
skru09 Posted April 15, 2010 Author Share Posted April 15, 2010 Hi Thanks for the link. I did go through the link but i think the function will resize the image proportionately. But i need all the images to be resized to one particular size. Please correct my understanding if I am wrong. Thanks. Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042579 Share on other sites More sharing options...
litebearer Posted April 15, 2010 Share Posted April 15, 2010 You may need to combine resizing AND cropping inorder to avoid distortion Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042607 Share on other sites More sharing options...
skru09 Posted April 15, 2010 Author Share Posted April 15, 2010 How do i go about doing that?? Sorry I am not very good in html Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042609 Share on other sites More sharing options...
EthanV2 Posted April 15, 2010 Share Posted April 15, 2010 I made a simple library to resize images a while ago. You specify the input file max size, say 250px, and the lib does all the work for you. It'll resize the image in proportion by working out which side is bigger, changing it to your specified size and changing the other side in proportion. http://pastebin.com/4DWreHXC Includes example code and documentation. Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042717 Share on other sites More sharing options...
litebearer Posted April 16, 2010 Share Posted April 16, 2010 Might also look at... Simple Image Manipulation in PHP (Rotate, Resize, Crop, Flip and Mirror, Thumbnails square and regular) http://www.mawhorter.net/web-development/simple-image-manipulation-in-php-rotate-resize-crop-flip-and-mirror-thumbnails-square-and-regular Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042763 Share on other sites More sharing options...
l0ve2hat3 Posted April 16, 2010 Share Posted April 16, 2010 This is what I use: function resize_image($sourcefile, $destfile, $fw, $fh,$jpegquality = 100){ if(!file_exists($sourcefile))die("Cannot Read sourcefile: ".$sourcefile); //determine type, height, width list($ow, $oh, $from_type) = getimagesize($sourcefile) or die('3'); switch($from_type){ case 1: // GIF $srcImage = imageCreateFromGif($sourcefile); break; case 2: // JPG $srcImage = imageCreateFromJpeg($sourcefile) or die('1'); break; case 3: // PNG $srcImage = imageCreateFromPng($sourcefile); break; default: // any other format return FALSE; break; } //determine dimensions for full size if($fw>$ow)$fw=$ow; $tempw = $fw; $temph = number_format((($oh*$fw)/$ow), 0); if($temph > $fh && $fh > 0){ $tempw = number_format((($ow*$fh)/$oh), 0); $temph = $fh; } //create the resized image $tempImage = imageCreateTrueColor($tempw, $temph); imagecopyresampled($tempImage, $srcImage, 0, 0, 0, 0, $tempw, $temph, $ow, $oh); //grab the resized images blob imageJpeg($tempImage, $destfile, $jpegquality); $imageblob=file_get_contents($destfile); //destroy file unlink($destfile); return $imageblob; } Quote Link to comment https://forums.phpfreaks.com/topic/198665-image-resizing-without-distorting-the-image/#findComment-1042798 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.