mirror of
https://github.com/php/web-php.git
synced 2026-03-31 11:42:09 +02:00
11 lines
286 B
PHP
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);
|
|
|
|
?>
|