mirror of
https://github.com/php/web-php.git
synced 2026-03-31 11:42:09 +02:00
17 lines
468 B
PHP
17 lines
468 B
PHP
<?php require "header.inc"?>
|
|
<H1>Image Manipulation</H1>
|
|
|
|
<H4>Creating a PNG with a TrueType font</H4>
|
|
<?example('<?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,
|
|
"SHOTS___.TTF", "ABCabc123");
|
|
ImagePNG($im);
|
|
?>');?>
|
|
<?php output('<BR> <IMG src="sf.png" width=150 height=30>'); ?>
|
|
|
|
<?php require "footer.inc"?>
|