1<?php
2header("Content-type: image/png");
3$string = $_GET['text'];
4$im     = imagecreate(350,30);
5
6$bg = imagecolorallocate($im, 84, 163, 247);
7$textcolor = imagecolorallocate($im, 255, 255, 255);
8
9imagestring($im, 5, 9, 6, "PDF mit Vorlage '".ucfirst($string)."' erzeugen", $textcolor);
10
11imagepng($im);
12imagedestroy($im);
13?>
14