Click here to Skip to main content
15,880,725 members
Articles / Programming Languages / PHP

Thumbnail images in PHP

Rate me:
Please Sign up or sign in to vote.
3.36/5 (6 votes)
18 Aug 2008CPOL 34.6K   721   6   2
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:

PHP
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
<?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.

PHP
$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.

PHP
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:

PHP
// 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:

PHP
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)


Written By
Iran (Islamic Republic of) Iran (Islamic Republic of)
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralObservation of a Discrepancy Pin
JaredRClemence19-Aug-08 5:16
JaredRClemence19-Aug-08 5:16 
GeneralRe: Observation of a Discrepancy Pin
Mohammad Dayyan19-Aug-08 10:30
Mohammad Dayyan19-Aug-08 10:30 

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

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