Home Tutorial Php Phpgd PHP GD image Character up

 
 

PHP GD image Character up
Posted on: November 13, 2009 at 12:00 AM
This example shows how to up the Image Character in php gd.

<?php

$im = imagecreate(120, 120);

$string = 'This is the text.';

$bg = imagecolorallocate($im, 255, 0, 0);

$black = imagecolorallocate($im, 0, 0, 0);

imagecharup($im, 5, 13, 13, $string, $black);

header('Content-type: image/png');

imagepng($im);

?>

After running the program you will get the following output

Related Tags for PHP GD image Character up:


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.