Home Tutorial Php Phpgd PHP GD transparent png

 
 

PHP GD transparent png
Posted on: November 11, 2009 at 12:00 AM
This example shows how to make transparent image in php gd.

<?php

$im = imagecreatetruecolor(55, 30);

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

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

imagecolortransparent($im, $black);

imagefilledrectangle($im, 4, 4, 50, 25, $red);

imagepng($im, './imagecolortransparent.png');

imagedestroy($im);

echo("Transparent image created and saved successfully.");

?>

After running the program you will get the following output

Related Tags for PHP GD transparent png :


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.