Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //index.php
- <img src="myimpage.php" alt="Image created by a PHP script" width="2445" height="905">
- //myimpage.php
- <?php
- $myimage = imagecreatefrompng ( "Media/KU-banner.png" );
- $text_colour = imagecolorallocate( $my_img, 255, 255, 255 );
- $font = 'fonts/Exo-Black.ttf';
- $size = 30;
- $angle = 0;
- $my_img = imagettftext( $myimage, $size, $angle, 740, 360, $text_colour, $font, "OPLÆG OM RETORIK");
- $my_img = imagettftext( $my_img, $size, $angle, 740, 500, $text_colour, $font, "V. NIKOLAJ BANG");
- imagesetthickness ( $my_img, 5 );
- header( "Content-type: image/png" );
- imagecolordeallocate( $text_color );
- imagedestroy( $my_img );
Advertisement
Add Comment
Please, Sign In to add comment