Advertisement
Guest User

Untitled

a guest
Aug 29th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. header ("Content-type: image/jpeg");
  2.  
  3. $image1Url = "background.jpg";
  4. $image2Url = "image.jpg";
  5. $image1 = imageCreateFromjpeg($image1Url);
  6. $image2 = imageCreateFromjpeg($image2Url);
  7.  
  8. imagecopymerge($image1, $image2, 10, 10, 0, 0, 130, 130, 100);
  9.  
  10. $line1 = "This is the first line";
  11. $line2 = "This is the second line";
  12. $font = "./VERDANA.TTF";
  13. $white = imagecolorallocate($image1, 255, 255, 255);
  14. $yellow = imagecolorallocate($image1, 252, 205, 5);
  15.  
  16. imagefttext($image1, 14, 0, 150, 110, $yellow, $font, $line1);
  17. imagefttext($image1, 14, 0, 150, 135, $white, $font, $line2);
  18. Imagejpeg ($image1, NULL, 100);
  19.  
  20. ImageDestroy ($image1);
  21. ImageDestroy ($image2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement