1
0
mirror of https://github.com/php/web-php.git synced 2026-03-31 03:32:23 +02:00
Files
archived-web-php/oz/showfont.php3
2000-03-08 02:10:21 +00:00

11 lines
262 B
PHP

<?php
Header("Content-type: image/png");
$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");
ImagePNG($im);
?>