Skip to main content

PHP Dynamic Image generation script - create fast loading image gallaries

PHP Dynamic Image generation script

A simple script in PHP which generates less sized image on runtime. the script needs PHP GD library installed on the server.



  • This will save the page loading time
  • A large image with huge sized image can be scaled and MB size of image can be reduced
  • Script can generate image in Large,medium,small and custom size
  • This can be used to create simple PHP image gallaries
  • Image name should be passed as base64 encoded



The below given script must be saved as image.php

<?php
ob_start();

function createImage( $upload, $newWidth =120)
{
if (!$info = getimagesize($upload) )
return false;

$aspect = $info[0] / $info[1];
$newHeight = round( $newWidth/$aspect );

//get image type
$mimetype=$info['2'];

//create image based on type
if( $mimetype == 2 )
$src = @imagecreatefromjpeg("$upload");
elseif( $mimetype == 1 )
$src = @imagecreatefromgif("$upload");
elseif( $mimetype == 3 )
$src = @imagecreatefrompng("$upload");

if ( !$src )
return false;
//die( "$newWidth $newHeight");
$tmp = @imagecreatetruecolor( $newWidth, $newHeight );
imagecopyresampled( $tmp, $src, 0, 0, 0, 0, $newWidth,
$newHeight, $info[0], $info[1] );
ob_end_flush();

//rendering image

header("Content-type: {$mimetype}");
if( $mimetype == 2 )
imagejpeg( $tmp );
elseif( $mimetype == 1 )
imagegif( $tmp );
elseif( $mimetype == 3 )
imagepng( $tmp );

imagedestroy( $src );
imagedestroy( $tmp );
return true;
}
// Function end


if( isset($_GET["imgsrc"]) && trim($_GET["imgsrc"]) != "" ){
$thumbnail_width=120; $thumbnailFlag=0;
$img_file=base64_decode(trim($_GET["imgsrc"]));

$resizedwidth=120;

$sourceFolder="images/";




if( is_file( $sourceFolder.$img_file ) ){

if( isset($_GET['size']) && strtolower( trim( $_GET['size'] )) == "large" ){
$resizedwidth=620;
}elseif( isset($_GET['size']) && strtolower( trim( $_GET['size'] )) == "medium" ){
$resizedwidth=400;
}elseif( isset($_GET['size']) && strtolower( trim( $_GET['size'] )) == "custom" && isset($_GET['wid']) && intval( $_GET['wid'] ) > $thumbnail_width ){
$resizedwidth=intval( $_GET['wid'] );
}else{
$thumbnailFlag=1;
$resizedwidth=$thumbnail_width;
}

$imgInfo=getimagesize($sourceFolder.$img_file);
if( intval( $imgInfo[0] ) < $resizedwidth && !$thumbnailFlag ){
$resizedwidth = intval( $imgInfo[0] );
}

createImage( $sourceFolder.$img_file , $resizedwidth);
}
}



?>

Save the above script as image.php




The script assumes, that all images are in "images" folder in root, You can modify it according to your needs.

To generate the images you should use like given below:

<img src="http://www.your_domain.com/image.php?imgsrc=<?php echo(base64_encode('myimage.jpg')) ?>&size=small" />

<img src="http://www.your_domain.com/image.php?imgsrc=<?php echo(base64_encode('myimage.jpg')) ?>&size=large" />

<img src="http://www.your_domain.com/image.php?imgsrc=<?php echo(base64_encode('myimage.jpg')) ?>&size=medium" />

<img src="http://www.your_domain.com/image.php?imgsrc=<?php echo(base64_encode('myimage.jpg')) ?>&size=custom&width=200" />


The image link looks some what like this:
http://www.YOUR_DOMAIN.com/image.php?imgsrc=SU1HXzQyMDVfMTM2MTY0OTQyMS5KUEc=&size=small

<img src="http://www.YOUR_DOMAIN.com/image.php?imgsrc=SU1HXzQyMDVfMTM2MTY0OTQyMS5KUEc=&size=small" />

Try this and post your comments :)

PHP GD library: http://www.php.net/manual/en/book.image.php

Popular posts from this blog

Deep-sea Anglerfish Black Seadevil Scary looking creature Video

Deep-sea Anglerfish are the strange and elusive creature that are very rarely observed in their natural habitat. Fewer than half a dozen have ever been captured on film or video by deep-diving research vehicles.They are mostly  found in tropical to temperate waters of the Indian,Pacific and Atlantic Oceans.

How to use WiFi adapter on Ubuntu 16.04 desktop PC - Realtek RTL8188EUS 802.11n Wireless USB Network Adapter Driver installation

Installation of Realtek RTL8188EUS 802.11n Wireless USB Network Adapter on Desktop PC having Ubuntu 16.04 OS My PC is running in Ubuntu 16.04 OS, recently I thought of using a dongle wife adapter to access our home's Wifi network. For this I used Realtek RTL8188EUS 802.11n Wireless USB Network Adapter ( Model No: OT-WUA950NM ) This small device cost around Rupees 250/- to Rs 300/- in India. I did the following steps for installation of this Realtek Nano Wifi Adapter: Plug Realtek RTL8188EUS 802.11n Wireless USB Network Adapter to your PC's USB port, Take the terminal application and run the command "lsusb" to list the plugged in usb devices: Myhome:~$ lsusb Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub Bus 001 Device 003: ID 0bda:8179 Realtek Semiconductor Corp. R...

Cheap Tourist boat service in Alapuzha - Enjoy the beauty of Aleppey Back waters using govt owned Tourist boat services

Feasible Tourist boat services in Alapuzha Aleppey / Alappuzha is one of the beautiful places in kerala. Aleppey district is famous for it amazing backwaters , you can enjoy house boat rides here. Kerala State Water transport department  (Kerala SWTD) provides facilities for tourists to enjoy the beauty of backwater by paying much less charge when compared to private boat services. There are boat services from Aleppey boat station which takes tourists to inner parts of the backwaters.


Urgent Openings for PHP trainees, Andriod / IOS developers and PHP developers in Kochi Trivandrum Calicut and Bangalore. Please Send Your updated resumes to recruit.vo@gmail.com   Read more »
Member
Search This Blog