PHP GD text on image


 

PHP GD text on image

This example shows how to add text on an image in php gd.

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

Ads