not Display text
        Posted  
        
            by tismon
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by tismon
        
        
        
        Published on 2010-05-10T07:36:18Z
        Indexed on 
            2010/05/10
            7:44 UTC
        
        
        Read the original article
        Hit count: 378
        
<?php
header ("Content-type: image/pjpeg");
$string = "manujagadeesh!!!";                                             
$font  =8;
$width  = ImageFontWidth($font)* strlen($string) ;
$height = ImageFontHeight($font) ;
$im = ImageCreateFromjpeg("sachin.jpg");
$x=100;
$y=200;
$background_color = imagecolorallocate ($im, 255, 255, 255); //white background
$text_color = imagecolorallocate ($im, 0, 0,0);//black text
imagestring ($im, $font, $x, $y,  $string, $text_color);
imagejpeg ($im);
?>
this is the add text to image in php
wen we inclue the my html page the text is not displaying
for eg
<?php
header ("Content-type: image/pjpeg");
$string = "manujagadeesh!!!";                                             
$font  =8;
$width  = ImageFontWidth($font)* strlen($string) ;
$height = ImageFontHeight($font) ;
$im = ImageCreateFromjpeg("sachin.jpg");
$x=100;
$y=200;
$background_color = imagecolorallocate ($im, 255, 255, 255); //white background
$text_color = imagecolorallocate ($im, 0, 0,0);//black text
imagestring ($im, $font, $x, $y,  $string, $text_color);
imagejpeg ($im);
?>
hi welcome
couldn't see the hi wlecome
© Stack Overflow or respective owner