In one of the previous posts about CAPTCHA
Image Generation we made use of PHP’s image generation functions
but didn’t discuss about them. So, if you had any problems or just want
to know more, read on.
Creating and outputting images from PHP is very simple and easy. And
since PHP supports images in a number of different formats you can very
easily generate images in various formats such as JPEG, PNG, GIF etc.
Generating images involves the following steps:
-
Creating a canvas.
-
Drawing
-
Outputting the image.
Now, let’s look at each of the steps in detail.
Creating a Canvas
Creating a canvas is very easy, just use the following function:
resource ImageCreateTrueColor ( int $width , int $height )
The capitalization doesn’t matter as with any function in PHP.
If you want your canvas to have some background color (default is
black) you can use the following function:
bool ImageFill ( resource $image , int $x , int $y , int $color )
Where color is to be first allocate using the following function:
int ImageColorAllocate ( resource $image , int $red , int $green , int $blue )
You can also use an existing image as base canvas for your new
image,
in that case create your image using the following function:
resource ImageCreateFromJPEG ( string $filename )
Images in other format can also be used, for PNG → ImageCreateFromPNG ()
, GIF → ImageCreateFromGIF ()
.
Drawing
After having set up the canvas, let’s draw something on it, say, a
rectangle. The rectangle drawing function with its argument list is:
bool ImageRectangle ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
For allocating color use the ImageColorAllocate()
function.
The following will create a square of size 10px X 10px having a blue
border:
$img = ImageCreateTrueColor(20, 20);
$blue = ImageColorAllocate($img, 0, 0, 255);
ImageRectangle($img, 0, 0, 10, 10, $blue);
You can browse the complete list of drawing (GD)
functions in PHP
here.
Some of the common ones are:
bool ImageLine
( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )bool ImageEllipse ( resource $image , int $cx , int $cy , int $width , int $height , int $color )
bool ImageArc ( resource $image , int $cx , int $cy , int $width , int $height , int $start , int $end , int $color )
I think we should also discuss a little about one function, to draw
text on out image, it’s called the ImageString()
function having the
following form:
bool ImageString ( resource $image , int $font , int $x , int $y , string $string , int $color )
Example:
$img = ImageCreateTrueColor(100, 100);
$red = ImageColorAllocate($img, 255, 0, 0);
ImageString($img, 7, 10, 10, 'Text', $red);
ImageString($img, 5, 10, 30, 'Smaller Text', $red);
The above lines will draw two string of text and the first one will
have a bigger font size. Higher number fonts (for $font
)
are bigger.
All done,now we have a completed image that just needs to be sent to
the browser. For this we first need to tell the browser what type of
content we’re going to send and the data (image) itself. The following
two lines will do this:
header('Content-Type: image/png');
ImagePNG($img);
Similarly you can output image in other formats also, just replace ImageJPEG
with ImageGIF
or ImagePNG
etc. and the content-type
header to image/gif
or image/png
accordingly.
After having output the image there is one more thing we should take
care of-freeing up the resources. You know images can take up
significant amount of resources which may affect the server and other
scripts running on it, so always use the following function:
bool ImageDestroy ( resource $image )
The following example code illustrates all, what we have learnt:
<?
/********************************************************
* DESCRIPTION: Exmple program to illustrate *
* image generation using PHP. *
* AUTHOR: Arvind Gupta *
* (http://www.arvindgupta.co.in) *
* DATE: 21-Mar-09 *
* WEBSITE: *
* http://learning-computer-programming.blogspot.com/ *
********************************************************/
// Set width and height
$width = 200;
$height= 200;
// Create canvas
$img = ImageCreateTrueColor($width, $height);
// Allocate colors
$gray = ImageColorAllocate($img, 200, 200, 200);
$red = ImageColorAllocate($img, 255, 0, 0);
$green = ImageColorAllocate($img, 0, 255, 0);
$blue = ImageColorAllocate($img, 0, 0, 255);
// Fill background color
ImageFill($img, 0, 0, $gray);
// Draw
ImageRectangle($img, 5, 5, ($width - 5), ($height - 5), $red);
ImageLine($img, 5, 5 , ($width - 5), ($height - 5), $red);
ImageEllipse($img, ($width / 2), ($height / 2), ($width - 10), ($height - 10), $green);
ImageArc($img, ($width / 2), ($height / 2), ($width - 40), ($height - 40), 180 , 360, $blue);
ImageArc($img, ($width / 2), ($height / 2), ($width - 60), ($height - 60), 0 , 180, $green);
ImageString($img, 7, ($width / 2) - 50, ($height / 2) - 10, 'Image Created', $red);
ImageString($img, 7, ($width / 2) - 30, ($height / 2) + 10, 'Using PHP', $green);
// Output
header('Content-Type: image/png');
ImagePNG($img);
// Free-Up
ImageDestroy($img);
?>
NOTE: You need to enable the “gd2” extension from “php.ini” for all this to work. See Installing/Configuring Image Support in PHP for more information.
Okay, end of this post. Keep checking back for more.