Advertisement
Guest User

Untitled

a guest
May 1st, 2014
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <?
  2. header('Content-Type: image/png;');
  3. $im = @imagecreatefrompng('sigbild.png') or die("Cannot select the correct image. Please contact the webmaster.");
  4. $text_color = imagecolorallocate($im, 0,255,255);
  5. $text_name = "$Name";
  6. $text_level = "$Level";
  7. $text_alter = "$Alter";
  8. $text_status = "$Status";
  9. $font = 'arial.ttf';
  10. imagettftext($im, 16, 0, 20, 36, $text_color, $font, $text_name);
  11. imagettftext($im, 16, 0, 20, 36, $text_color, $font, $text_level);
  12. imagettftext($im, 16, 0, 72, 69, $text_color, $font, $text_alter);
  13. imagettftext($im, 16, 0, 72, 99, $text_color, $font, $text_status);
  14. imagepng($im);
  15. imagedestroy($im);
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement