- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试制作一个验证码,并且我在网上阅读了一些教程。所以,我复制/粘贴了这个函数:
create_image();
exit();
function create_image() {
//Let's generate a totally random string using md5
$md5_hash = md5(rand(0,999));
//We don't need a 32 character long string so we trim it down to 5
$security_code = substr($md5_hash, 15, 5);
//Set the session to store the security code
$_SESSION["security_code"] = $security_code;
//Set the image width and height
$width = 100;
$height = 20;
//Create the image resource
$image = ImageCreate($width, $height);
//We are making three colors, white, black and gray
$white = ImageColorAllocate($image, 255, 255, 255);
$black = ImageColorAllocate($image, 0, 0, 0);
$grey = ImageColorAllocate($image, 204, 204, 204);
//Make the background black
ImageFill($image, 0, 0, $black);
//Add randomly generated string in white to the image
ImageString($image, 3, 30, 3, $security_code, $white);
//Throw in some lines to make it a little bit harder for any bots to break
ImageRectangle($image,0,0,$width-1,$height-1,$grey);
imageline($image, 0, $height/2, $width, $height/2, $grey);
imageline($image, $width/2, 0, $width/2, $height, $grey);
//Tell the browser what kind of file is come in
header("Content-Type: image/jpeg");
//Output the newly created image in jpeg format
ImageJpeg($image);
//Free up resources
ImageDestroy($image);
}
但是当我尝试调用它时,出现了这个错误:
fatal error :在第 19 行调用 C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\gtw\registration\createCaptcha.php 中未定义的函数 ImageCreate()
有什么问题?一些 PHP 库?
最佳答案
未启用 php_gd2
扩展。
它包含在 Windows PHP 发行版中,但您必须在 php.ini
中启用它。为此,只需打开 php.ini
并取消注释(删除前导 ;
)以下行:
extension=php_gd2.dll
保存,重启 Apache,你应该没问题。
关于PHP - ImageCreate() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5274563/
我在 php 中创建了图像以显示在我的主页上 ImageCreate(200, 800); // very simple and working. No sizing it is an issue f
我正在尝试制作一个验证码,并且我在网上阅读了一些教程。所以,我复制/粘贴了这个函数: create_image(); exit(); function create_image() { //L
我目前有一个只接受 PNG、JPG/JPEG、GIF 图像的图像上传输入。 如果文件有效,则它会继续使用以下方法从图像创建缩略图 imagecreatefrompng() imagecopy() im
目录 常规Ubuntu与windows 编译make安装方法 phpize方法 centos安装GD库 在使用php处理一些图像时,有时会出现诸
使用这个“有点”丑陋的类,我使用 .ttf 字体文件将文本呈现为图像。当使用 ImageFlip() 函数时,我得到一个黑色的全黑图像(尽管大小合适)。当我用 imagecreate() 替换所有出现
我正在尝试将一些图形放在网页上,而在我的计算机原型(prototype)中,它在本地主机上一切正常。但是现在我将文件上传到服务器,但在绘制一些图形时遇到了问题。在我的电脑中,它们被绘制出来,但在服务器
我需要从 imagemagick/rmagick 库创建一个图像,我应该怎么做?与在 PHP 中一样,它是通过 GD 库完成的。 在输入中,我已经给出了图像颜色、区域标签的图像坐标……有什么想法吗
我是一名优秀的程序员,十分优秀!