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/s_image.php3
1999-08-21 16:11:20 +00:00

17 lines
547 B
PHP

<?php require "header.inc"?>
<H1>Image Manipulation</H1>
<H4>Creating a GIF with a TrueType font</H4>
<?example('<?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);
?>');?>
<?php output('<BR><IMG src="/showfont.php3?font=Soopafre.ttf&string=ABCabc123" width=150 height=30>'); ?>
<?php require "footer.inc"?>