کمک در مورد gd

با سلام من کد زیر رو نوشتم ولی کار نمیکند در ضمن کتابخانه gd هم فعال کردم
PHP:
<?php
//SecImage.php
session_start();
if( !isset( $_SESSION['SecImageStr']))
exit();
$Str = $_SESSION['SecImageStr'];
$SecImage = imagecreate( 50, 20);
$BgColor = imagecolorallocate( $SecImage, 255, 150, 220);//Background color
$FrColor = imagecolorallocate( $SecImage, 0, 0, 255);//ForeGround color
$LineColor = imagecolorallocate( $SecImage, 255, 0, 150);//Line color
for($Index = 0; $Index != 3; $Index++)
{
$LineDegree = rand(15, 50);
imageline ( $SecImage, $Index, $LineDegree, ($Index+1) * 20, $Index,
$LineColor );
}
imagestring ( $SecImage, 4, 5, 1, $Str, $FrColor ) ;
imagejpeg ( $SecImage , '', 100 ) ;
header("Content-type: image/jpg");
imagedestroy ( $SecImage ) ;
?>
 

جدیدترین ارسال ها

بالا