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