0
I’d like to instead of the black background for an image, do you have how? I’d like to do the same:
<?php
header("Content-type:image/gif");
$img = imagecreate(470,246);
$azul = imagecolorallocate($img,0,0,0);
$branco = imagecolorallocate($img,255,255,255);
imagettftext($img,25,0,10,50,$branco,"fonts/SourceSansPro-Light.ttf","NARUTO SHIPPUDEN");
imagettftext($img,14,0,14,75,$branco,"fonts/SourceSansPro-Light.ttf","ASSISTA GRATIS NO ANIMEZONE");
imagettftext($img,14,0,14,75,$branco,"fonts/SourceSansPro-Light.ttf","ASSISTA GRATIS NO ANIMEZONE");
imagettftext($img,14,0,14 ,100,$branco,"fonts/SourceSansPro-Light.ttf","LEGENDADO / DUBLADO");
imagettftext($img,14,0,14 ,100,$branco,"fonts/SourceSansPro-Light.ttf","LEGENDADO / DUBLADO");
imagettftext($img,14,0,14 ,100,$branco,"fonts/SourceSansPro-Light.ttf","LEGENDADO / DUBLADO");
imagettftext($img,14,0,14 ,100,$branco,"fonts/SourceSansPro-Light.ttf","LEGENDADO / DUBLADO");
imagettftext($img,14,0,14 ,100,$branco,"fonts/SourceSansPro-Light.ttf","LEGENDADO / DUBLADO");
imagegif($img);
imagedestroy($img);
?>
have tried using a widemagic library?
– Arsom Nolasco