Click here to Skip to main content
Licence CPOL
First Posted 18 Aug 2008
Views 12,538
Downloads 105
Bookmarked 4 times

Thumbnail images in PHP

By | 18 Aug 2008 | Article
Creating thumbnail images using PHP.

Introduction

At times, we need to change image sizes. We will see here how we can do that using PHP.

Using the code

This is the main function we will use:

function thumbnail_image($original_file_path, $new_width, $new_height, $save_path="")

Parameters:

  • $original_file_path: Path of the original image
  • $new_width: Width of the thumbnail image
  • $new_height: Height of the thumbnail image
  • $save_path: Path of the created thumbnail (if you skip this, the thumbnail image will be saved in the original image's folder with a thumbnail.* file name)

Returns:

This function is void thus returns nothing.

The following function creates the thumbnail image in the sample:

<?php
require_once("thumbnail.php");
thumbnail_image("source.jpg","320", "200", "");
?>

The above sample creates thumbnail.jpg as a 320*200 image inside source.jpg.

How does it work

I get the image information using the getimagesize PHP function.

$imgInfo = getimagesize($original_file_path);
$imgExtension = ""; //extension of original image

switch ($imgInfo[2])
{
    case 1:
        $imgExtension = '.gif';
        break;

    case 2:
        $imgExtension = '.jpg';
        break;

    case 3:
        $imgExtension = '.png';
        break;
}

If $save_path equals "" then the thumbnail file will be "thumbnail".$imgExtension.

if ($save_path=="") $save_path = "thumbnail".$imgExtension ;

Here is how to get the width and height of the original image and creating an image object for the thumbnail image:

// Get new dimensions
list($width, $height) = getimagesize($original_file_path);

// Resample
$imageResample = imagecreatetruecolor($new_width, $new_height);

if ( $imgExtension == ".jpg" )
{
    $image = imagecreatefromjpeg($original_file_path);
}
else if ( $imgExtension == ".gif" )
{
    $image = imagecreatefromgif($original_file_path);
}
else if ( $imgExtension == ".png" )
{
    $image = imagecreatefrompng($original_file_path);
}

imagecopyresampled($imageResample, $image, 0, 0, 0, 0, $new_width,
                   $new_height, $width, $height);

Lastly, create the thumbnail image and save it:

if ( $imgExtension == ".jpg" )
{
    imagejpeg($imageResample, $save_path);
}
else if ( $imgExtension == ".gif" )
{
    imagegif($imageResample, $save_path);
}
else if ( $imgExtension == ".png" )
{
    imagepng($imageResample, $save_path);
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Mohammad Dayyan



Iran (Islamic Republic Of) Iran (Islamic Republic Of)

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralObservation of a Discrepancy PinmemberJaredRClemence5:16 19 Aug '08  
Dear Mr. Dayyan:
 
First, let me express my appreciation for your article. I had never known about some of the PHP functions that you used and now have something more to look into. Thank you.
 
Regarding the discrepancy to which I refer in the subject of this message: In your function definition, you state the parameters are $original_file_path, $new_width, $new_height, $save_path = "" (in that order exactly). However, in your implimentation, you place the $save_path before the $new_width. Could you revise either the implementation text or the function definition so that they are concistant?
 
Thank you again. Other than the above discrepancy, I think it is a most excellent article!
 
Kind regards,
 
Jared Clemence
LAMP Hobbiest
GeneralRe: Observation of a Discrepancy [modified] PinmemberMohammad Dayyan10:30 19 Aug '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 18 Aug 2008
Article Copyright 2008 by Mohammad Dayyan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid