PHP
PHP Implementation
I decided to take it upon myself to port this wonderful program to a few other languages.
#!/usr/bin/php <?php echo "Arch is the best!\n"; ?>
~ sco50000, 2008-05-14 14:26:40
PHP/GD Implementation
I decided to take it upon myself to port this wonderful program to a few other languages.
<?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, "Arch is the best!", $intFontC);
imagegif($rscImage);
imagedestroy($rscImage);
?>
~ sco50000, 2008-05-14 14:29:30