Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // cria uma imagem de 100*30
- $im = imagecreate(200, 20);
- // fundo branco e texto azul
- $bg = imagecolorallocate($im, 255, 255, 255);
- $textcolor = imagecolorallocate($im, 0, 0, 255);
- // escreve a string em cima na esquerda
- imagestring($im, 5, 10, 0, "Moro Logo Ali Downloads", $textcolor);
- // envia a imagem
- header("Content-type: image/png");
- imagepng($im);
- ?>
- ///by garfield
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement