<?php
$zend = imagecreatefrompng('server.png');
$im = imagecreatetruecolor(468, 60);
imagesettile($im, $zend);
imagefilledrectangle($im, 0, 0, 468, 60, IMG_COLOR_TILED);
$black = imagecolorallocate($im, 160, 118, 71);
$text = 'Testing...';
$font = 'arial.ttf';
imagettftext($im, 20, 0, 11, 21, $black, $font, $text);
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
imagedestroy($zend);
?>