Home » » imagecreate

imagecreate

Written By 1 on Sunday, September 30, 2012 | 7:18 PM

resource imagecreate ( int $width , int $height )

Create a new palette based image

imagecreate() returns an image identifier representing a blank image of specified size.


<?php
header
("Content-Type: image/png");
$im = @imagecreate(11020)
    or die(
"Cannot Initialize new GD image stream");
$background_color imagecolorallocate($im000);
$text_color imagecolorallocate($im2331491);
imagestring($im155,  "A Simple Text String"$text_color);
imagepng($im);
imagedestroy($im);
?>


Horizontal Navigation Menu with CSS and Background Image

0 Comment:

Post a Comment