Advertisement
Guest User

Untitled

a guest
Jul 28th, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php
  2. $rysunek = ImageCreateFrompng("img/bg1.png");
  3.  
  4. // Definicje kolorów jako składowe RGB
  5. $bialy = ImageColorAllocate($rysunek, 255, 255, 255);
  6. $nieb = ImageColorAllocate($rysunek, 0, 255, 255);
  7. $font = "impact.ttf";
  8. $text = $_SERVER['REMOTE_ADDR'];
  9.  
  10. imagettftext($rysunek, 20, 0, 9, 72, $bialy, $font, $text);
  11.  
  12. imagesavealpha($rysunek,true);
  13. header("Content-type: image/png");
  14. ImagePng($rysunek);
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement