Fekke

Untitled

Mar 2nd, 2017
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. //index.php
  2. <img src="myimpage.php" alt="Image created by a PHP script" width="2445" height="905">
  3.  
  4.  
  5. //myimpage.php
  6. <?php
  7. $myimage = imagecreatefrompng ( "Media/KU-banner.png" );
  8. $text_colour = imagecolorallocate( $my_img, 255, 255, 255 );
  9. $font = 'fonts/Exo-Black.ttf';
  10. $size = 30;
  11. $angle = 0;
  12. $my_img = imagettftext( $myimage, $size, $angle, 740, 360, $text_colour, $font, "OPLÆG OM RETORIK");
  13. $my_img = imagettftext( $my_img, $size, $angle, 740, 500, $text_colour, $font, "V. NIKOLAJ BANG");
  14. imagesetthickness ( $my_img, 5 );
  15.  
  16. header( "Content-type: image/png" );
  17. imagecolordeallocate( $text_color );
  18. imagedestroy( $my_img );
Advertisement
Add Comment
Please, Sign In to add comment