1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 11:42:09 +02:00
Files
archived-web-php/als99/showfont.php3

11 lines
262 B
PHP

<?php
Header("Content-type: image/gif");
$im = ImageCreate(150,30);
$white = ImageColorAllocate($im, 255,255,255);
$black = ImageColorAllocate($im, 0,0,0);
ImageTTFText($im, 20, 0, 10, 20, $black, $font, "ABCabc123");
ImageGif($im);
?>