我有以下
的代码段$code = generateCode($characters);
/* font size will be 75% of the image height */
$font_size = $height * 0.75;
$image = imagecreate($width, $height) or die('Cannot initialize new GD image stream');
/* set the colours */
$background_color = imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 20, 40, 100);
$noise_color = imagecolorallocate($image, 100, 120, 180);
/* generate random dots in background */
for( $i=0; $i<($width*$height)/3; $i++ ) {
imagefilledellipse($image, mt_rand(0,$width), mt_rand(0,$height), 1, 1, $noise_color);
}
/* generate random lines in background */
for( $i=0; $i<($width*$height)/150; $i++ ) {
imageline($image, mt_rand(0,$width), mt_rand(0,$height), mt_rand(0,$width), mt_rand(0,$height), $noise_color);
}
/* create textbox and add text */
$textbox = imagettfbbox($font_size, 0, $font, $code) or die('Error in imagettfbbox function');
$x = ($width - $textbox[4])/2;
$y = ($height - $textbox[5])/2;
imagettftext($image, $font_size, 0, $x, $y, $text_color, $font , $code) or die('Error in imagettftext function');
/* output captcha image to browser */
header('Content-Type: image/jpeg');
imagejpeg($image);
imagedestroy($image);
$_SESSION['security_code'] = $code;
我正在努力保存图片,但我能够渲染它,有没有办法保存capcha图像而不是重新编辑它?
答案 0 :(得分:3)
使用输出缓冲:
ob_start();
imagepng(...); // or imagejpeg(...);
$img=ob_end_clean();
由于它现在保存在变量中,您可以将图像存储在数据库中(不保存到文件中)或使用以下内容进行渲染:
header('Content-type: image/png');
echo $img;
答案 1 :(得分:3)
是的你可以,提示:第二个参数,如果没有设置或为NULL,原始图像流将直接输出。
希望有所帮助。