Williams Duarte 431 Denunciar post Postado Julho 12, 2014 Obrigado Williams, vou testar aqui. Corrige a função abaixo faltou destruir a imagem no final imagedestroy($im); <?php if(!isset($_GET['text'])) { die("No text provided"); } header ("Content-type: image/png"); $textToConvert = $_GET['text']; $font = 4; $width = ImageFontWidth($font) * strlen($textToConvert); $height = ImageFontHeight($font); $im = @imagecreate ($width,$height); $background_color = imagecolorallocate ($im, 255, 255, 255); //this means it's white bg $text_color = imagecolorallocate ($im, 0, 0,0);//and of course black text imagestring ($im, $font, 0, 0, $textToConvert, $text_color); imagepng ($im); imagedestroy($im); ?> Outra forma é trabalhar com fontes personalizadas http://terriswallow.com/weblog/2007/writing-text-to-images-with-php/ Compartilhar este post Link para o post Compartilhar em outros sites
Williams Duarte 431 Denunciar post Postado Julho 12, 2014 Postei aqui como converter para PDF os boletos do Projeto PHPBoleto e os exemplos. :thumbsup: Compartilhar este post Link para o post Compartilhar em outros sites