Hi
I have created a php script for writing text in a image. Its working fine. But when I include a file it doesnot generate the image. what is the problem? my code is as bello
<?php
header ("Content-type: image/jpeg");
$im = imagecreatefromjpeg("photo.jpg");
$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
$textColor = imagecolorallocate ($im, 0, 0,0);
$sn='s/n:- '.$_GET['serial'];
imagettftext ( $im , 13 , 0 , 290 ,180 , $textColor , 'century.ttf' , 'tushar' );
imagettftext ( $im , 13 , 0 , 330 ,275 , $textColor , 'century.ttf' , $sn );
imagejpeg($im);
?>
the above code works very fine. But when I use below code it doesnot work
<?php
session_start();
include 'sql.php';
header ("Content-type: image/jpeg");
$im = imagecreatefromjpeg("lottery.jpg");
$backgroundColor = imagecolorallocate ($im, 255, 255, 255);
$textColor = imagecolorallocate ($im, 0, 0,0);
$sn='s/n:- '.$_GET['serial'];
imagettftext ( $im , 13 , 0 , 290 ,180 , $textColor , 'century.ttf' , 'tushar' );
imagettftext ( $im , 13 , 0 , 330 ,275 , $textColor , 'century.ttf' , $sn );
imagejpeg($im);
?>
I need to include sql.php file to call functiong and make 'tushar' in line 7 as variable. Please help me