18.4 Text zeichnen

Problem

Sie wollen Text als Grafik zeichnen. Damit können Sie dynamische Buttons oder Hit-Zähler erstellen.

Lösung

Für eingebaute GD-Schriftarten verwenden Sie ImageString( ):

ImageString($image, 1, $x, $y, 'I love PHP Cookbook', $text_color);

Für TrueType-Schriftarten verwenden Sie ImageTTFText( ):

ImageTTFText($image, $size, 0, $x, $y, $text_color, '/pfad/zu/font.ttf',
             'I love PHP Cookbook');

Für PostScript-Type-1-Schriftarten verwenden Sie ImagePSLoadFont( ) und ImagePSText( )

$font = ImagePSLoadFont('/pfad/zu/font.pfb');
ImagePSText($image, 'I love PHP Cookbook', $font, $size,
            $text_color, $background_color, $x, $y);

Diskussion

Um Text auf der Bildfläche zu positionieren, rufen Sie ImageString( ) auf. ImageString( ) braucht, wie andere ...

Get PHP 5 Kochbuch now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.