Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // @Author: [iPs]SuYaNw
- $im = imagecreate(200, 20);
- $bg = imagecolorallocate($im, 255, 255, 255);
- $textcolor = imagecolorallocate($im, 0, 0, 255);
- imagestring($im, 5, 10, 0, "Moro Logo Ali Downloads", $textcolor);
- header("Content-type: image/png");
- imagepng($im);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement