Not a Member Yet,
Click here to Register

ID: 100
Viewed: 4514
Added: Mar 22, 2002
Version:
Snippet uploaded by: snippet
Written By: snippet
Demo: Sorry, no demo



User Rated at: 0 Stars
Rate This:

Thank you for your vote. Please wait...

It appears you already voted for this snippet

It appears your vote value was empty

This little script will test to see if you have the GD Library installed and working on your server. Very useful for running this test.

<!---Head--->
none

<!---Body--->


 <?
Header("Content-type: image/png");

/* create image */
$image = imagecreate(200,200);

/* create color R=100, G=0, R=0 */
$maroon = ImageColorAllocate($image,100,0,0);

/* create color R=255, G=255, R=255 */
$white = ImageColorAllocate($image,255,255,255);

/* create color green */
$green = ImageColorAllocate($image,0,100,0);

/* create white background*/
ImageFilledRectangle($image,0,0,200,200,$white);

/* create frame*/
ImageRectangle($image,10,10,190,190,$maroon);

/* create inner rectangle*/
ImageFilledRectangle($image,50,70,150,150,$maroon);

/* display 5 fonts */ for ($i=1; $i <= 5; $i++)
ImageString($image,$i,15,$i*10,'Test',$green);

/* render image */
ImagePNG($image);

/* cleanup memory */
ImageDestroy($image);
?>


No Comments to show

Please completely fill out the form below if you want to review this snippet. All reviews are subject to validation.


Replying to a Comment...


Adding your comment. Please wait...

Thanks for adding your comment!. After further review it will be added.

There was a problem adding your comment. Please try again.

Please complete all the fields in the form before sending.

© 2002 - 2024 snippetlibrary.com All Rights Reserved. Conditions
Do NOT follow this link or you will be banned from the site!