<?php
    $im
= @ImageCreate(150, 100) or die ("Cannot Initialize new GD image stream");

    
$bg_color   = ImageColorAllocate($im, 255, 255, 255);
    
$text_color = ImageColorAllocate($im, 50, 50, 200);
    
$ttfont     = "/System/Library/Frameworks/JavaVM.framework/Versions/1.3.1/Home/lib/fonts/LucidaSansRegular.ttf";

    
imagefttext($im, 10, 0, 10, 20, $text_color, $ttfont, "Some TrueType Text", $null);
    
ImageTTFText($im, 10, 0, 10, 40, $text_color, $ttfont, "More TrueType Text");
    
ImageString($im, 2, 11, 50, "Some Bitmap Text", $text_color);

    
header("Content-type: image/png");
    
ImagePng($im);
?>