Advertisement
MinecraftRocks999

Untitled

Jan 11th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. header("Content-type: image/png");
  4. $string = $_GET['text'];
  5. $im = imagecreatefrompng("card.png");
  6. $color = imagecolorallocate($im, 0, 0, 0);
  7. $px = (imagesx($im) - 9 * strlen($string)) / 2;
  8. imagestring($im, 24, $px, 14, $string, $color);
  9.  
  10. $im2 = imagecreatefrompng("http://cravatar.eu/head/MCRocks999/250.png");
  11. imagesavealpha($im2, true);
  12. imagealphablending($im2, true);
  13.  
  14. imagecopy($im, $im2, 50, 60, 0, 0, 338, 500);
  15. imagepng($im);
  16. imagedestroy($im);
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement