Guest User

Untitled

a guest
Jun 19th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. // ia valorile din index.
  3. $name = urldecode($_GET['name']);
  4.  
  5. header ("Content-type: image/png");
  6. $im = imagecreatefrompng("xxx.png"); //sursa imaginii
  7.  
  8. $fontfile = 'font.ttf'; // fontul
  9. $culoare = ImageColorAllocate($im, 0, 0, 0); // culoarea textului
  10.  
  11. imagefttext($im, 30, 0, 260, 100, $culoare, $fontfile, $name); // scrie pe imagine
  12.  
  13. imagepng($im);
  14. imagedestroy($im);
  15.  
  16. ?>
Add Comment
Please, Sign In to add comment