PHP Captcha image not displaying in chrome

若如初见. 提交于 2019-12-11 18:41:00

问题


I use PHP for creating a captcha image. It is showing the captcha at the time of loading. After completing the loading, it doesn't show the captcha image in Chrome. In other browsers, it is working fine. Why?

<?php
// Create an image from button.png
$image = imagecreatefrompng('button.png');

// Set the font colour
$colour = imagecolorallocate($image, 255, 120, 4);

// Set the font
$font = '../fonts/Anorexia.ttf';

// Set a random integer for the rotation between -15 and 15 degrees
$rotate = rand(-15, 15);

// Create an image using our original image and adding the detail
imagettftext($image, 18, $rotate, 18, 30, $colour, $font, $str);

// Output the image as a png
imagepng($image);

?>

回答1:


having same problem.. One possible reason is anti-banner/ antivirus.. i am using Karpersky.. when i turned off kaspersky captcha showing ok, little bit strange from Chrome.. I think they should look for this problem




回答2:


Your whole code is correct just include

header('Content-Type: image/png');

above your code...



来源:https://stackoverflow.com/questions/13133752/php-captcha-image-not-displaying-in-chrome

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!