Hello World in PHP + GD library

posted on 2009-09-15 17:22:43+08:00 by david
PHP+GD
  1. <?
  2. // Hello World in PHP + GD library
  3. header("Content-type: image/gif");
  4. $rscImage = imagecreatetruecolor(80, 25);
  5. $intFontC = imagecolorallocate($rscImage, 255, 255, 255);
  6. $intBGC = imagecolorallocate($rscImage, 0, 0, 0);
  7. imagestring($rscImage, 2, 5, 5, "Hello World!", $intFontC);
  8. imagegif($rscImage);
  9. imagedestroy($rscImage);
  10. ?>

All Code Snippets

Hot Code Snippets

New Code Snippets