php gd image quality
        Posted  
        
            by apueee
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by apueee
        
        
        
        Published on 2010-04-06T19:58:40Z
        Indexed on 
            2010/04/06
            20:03 UTC
        
        
        Read the original article
        Hit count: 532
        
I 'm trying to add text on a specific image. Its working perfectly but the quality of image is low especially for papyrus.ttf font. How can i improve the quality of text in the image. But i need high quality to print the output. Here is my code.. its very simple.
header("Content-Type: image/jpeg");
$im = imagecreatefromjpeg("cosmos.jpg");
$black = ImageColorAllocate($im, 0, 0, 0);
Imagettftext($im, 14, 0, 10, 15, $black, 'papyrus.ttf', "Corey and Lisa ");
Imagettftext($im, 14, 0, 10, 35, $black, 'papyrus.ttf', " 1994, june");
Imagejpeg($im, '', 100);
ImageDestroy($im);
Download: http://wneeds.com/gdtest.zip
© Stack Overflow or respective owner