Jump to content

Improve thumbnail creator to work with more formats?


djfox

Recommended Posts

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.