Home Tutorial Php Phpgd PHP GD text on image

 
 

PHP GD text on image
Posted on: November 11, 2009 at 12:00 AM
This example shows how to add text on an image in php gd.

<?php

header("Content-Type: image/jpeg");

$im = ImageCreateFromjpeg("images.jpg");

$black = ImageColorAllocate($im, 255, 255, 255);

$start_x = 10;

$start_y = 20;

Imagettftext($im, 12, 0, $start_x, $start_y, $black, 'C:/WINNT/Fonts/arial.ttf', "Text over Image");

Imagejpeg($im, '', 100);

ImageDestroy($im);

?>

After running the program you will get the following output

Related Tags for PHP GD text on image :


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.