Er her nogen der kan hjælpe mig med følgendene billede:
Skulle gerne have den til at ligne dette:
BilledeInd til videre har jeg dette:
- <?php
- $font = 25;
- $string = 'Exterior Design';
- $string = strtoupper($string);
- $arr = explode(' ',trim($string));
- $im = @imagecreatetruecolor(strlen($arr[0]) * $font / 1.5, $font);
- imagesavealpha($im, true);
- imagealphablending($im, false);
- $white = imagecolorallocatealpha($im, 255, 255, 255, 127);
- imagefill($im, 0, 0, $white);
- $lime = imagecolorallocate($im, 204, 255, 51);
- imagettftext($im, $font, 0, 0, $font - 3, $lime, "AMDBI.ttf", $arr[0]);
-
- header("Content-type: image/png");
- imagepng($im);
- imagedestroy($im);
- ?>
Håber nogen kan hjælpe.