djfox Posted February 9, 2008 Share Posted February 9, 2008 I have a thumbnail creator that someone else had developed for me. It works for jpg images but my site also has png, gif bmps and probably more in the future. But the thumbnail creator can`t do thumbnails for these non-jpg images. Here`s what the thumbnail creator is: <?php // File and new size //$imgfile = 'thumb.jpg'; //$percent = 0.2; header('Content-type: image/jpeg'); $imgfile = $_GET['img']; list($width, $height) = getimagesize($imgfile); //echo $width, $height; $newwidth = 100; $factor = $newwidth / $width; //echo $factor; $newheight = $height * $factor; $thumb = ImageCreateTrueColor($newwidth,$newheight); $source = imagecreatefromjpeg($imgfile); imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height); imagejpeg($thumb); ?> Any advice? Link to comment https://forums.phpfreaks.com/topic/90147-improve-thumbnail-creator-to-work-with-more-formats/ Share on other sites More sharing options...
BlueSkyIS Posted February 9, 2008 Share Posted February 9, 2008 change imagecreatefromjpeg() to the proper function for each image type. Link to comment https://forums.phpfreaks.com/topic/90147-improve-thumbnail-creator-to-work-with-more-formats/#findComment-462264 Share on other sites More sharing options...
djfox Posted February 13, 2008 Author Share Posted February 13, 2008 Thanks a bunch! (For some reason the forum won`t let me mark this topic solved.) Link to comment https://forums.phpfreaks.com/topic/90147-improve-thumbnail-creator-to-work-with-more-formats/#findComment-465456 Share on other sites More sharing options...
cooldude832 Posted February 13, 2008 Share Posted February 13, 2008 If you look around this forum I've posted a jpg/gif/png image unloader resizer a million times. FYI bitmap is not an accepted web graphics compression mode. So you either have to convert bitmaps on uploads or do some crazy stuff with them. Tifs have limited support in php, but stick to the core 3. Link to comment https://forums.phpfreaks.com/topic/90147-improve-thumbnail-creator-to-work-with-more-formats/#findComment-465461 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.