Home Tutorial Php Phpgd php gd background color

 
 

php gd background color
Posted on: October 31, 2009 at 12:00 AM
This example shows you how to create background color in php gd.

<?php

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

$width = 350;

$height = 360;

$im = ImageCreateTrueColor($width, $height);

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

ImageFillToBorder($im, 0, 0, $red, $red);

ImagePNG($im);

ImageDestroy($im);

 

After running the program you will get the following output

Related Tags for php gd background color:


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.