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