Quote:
Originally Posted by harvey
I see your Hello World and add mine
Code:
#include <iostream.h>
main()
{
cout << "Hello World!";
return 0;
}
|
I see your Hello World and up it.
PHP Code:
<?php
header("Content-type: image/gif");
$rscImage = imagecreatetruecolor(80, 25);
$intFontC = imagecolorallocate($rscImage, 255, 255, 255);
$intBGC = imagecolorallocate($rscImage, 0, 0, 0);
imagestring($rscImage, 2, 5, 5, "Hello World!", $intFontC);
imagegif($rscImage);
imagedestroy($rscImage);
?>