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

11 lines
286 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, "/windows/fonts/VERDANAB.TTF", "ABCabc123");
ImageGif($im);
?>