
Untitled
By: a guest on
May 6th, 2012 | syntax:
PHP | size: 0.63 KB | hits: 19 | expires: Never
<?php
$name = 'Max Mustermann';
$straße = 'Musterweg 24';
$email = 'muster@muster.de';
$ort = '00000 Musterburg';
$image_file='/images/impressum.png';
$image=imagecreatefrompng($image_file);
$grey = ImageColorAllocate ($image,58,58,42);
imagettftext($image, 8, 0, 17, 17, $grey, '/images/verdanab.ttf', $name);
imagettftext($image, 8, 0, 17, 35, $grey, '/images/verdana.ttf', $straße);
imagettftext($image, 8, 0, 200, 35, $grey, '/images/verdana.ttf', $email);
imagettftext($image, 8, 0, 17, 55, $grey, '/images/verdana.ttf', $ort);
header("Content-Type: image/png");
imagepng($image);
imagedestroy($image);
?>