- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章php遇到错误Call to undefined function ImageCreate()解决方法由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
在使用php处理一些图像时,有时会出现诸如这样的错误:Call to undefined function imagecreate() 。
这是由于没有安装或是没有开启php的gd库导致的问题.
。
解决方案:
1、在linux系统(这里用的是Ubuntu系统)下 。
首先在终端输入下列命令:
sudo apt-get install php5-gd 。
这样就已经安装完php的gd库了。如果使用的是apache服务器,这时还需重启下服务器:
sudo service apache2 restart 。
如果是nginx则可用可不用.
2、在windows系统下 。
打开php安装目录下的php.ini配置文件,找到这一行:
;extension=php_gd2.dll 。
将这一行前面的;号去掉,然后保存。这样已经开启了gd扩展库.
最后重启下服务器就行了.
。
在编译配置扩展的时候就没加上gd的同学可以参考下面的方法 。
找到安装php的目录下,重新配置扩展 。
make clean ./configure --prefix=/png/php/5.6.40 --enable-fpm --with-apxs2=/usr/bin/apxs2 --enable-maintainer-zts -with-mysqli --with-pdo-mysql --with-pdo-sqlite --with-gd make make test make install 。
./configure --with-gd有了就行,其他的扩展看需求 。
vim打开php.ini 。
搜索 。
#vim命令关键字搜索: (1) 点ESC (2)/“关键字” 。
/extension=php_gd2.dll 。
找到这行去掉前面的分号“;” 。
保存退出,重启nginx,apache2重启apache2 。
/etc/init.d/httpd restart 。
index.php查找gd,,,成功! 。
。
原因:未安装php的gd库,主要处理图片的库 。
解决方法:
在已经安装php的情况先,需要对PHP进行扩展,加入gd库 。
1:进入到php源码里面的gd目录下 。
cd /usr/src/php-5.5.38/ext/gd/ 。
2:执行phpize (命令在php/bin/目录下) 。
phpize 。
3:编译安装 。
./configure --with-php-config=/usr/local/php5/bin/php-config --with-png-dir --with-freetype-dir --with-jpeg-dir --with-gd make make install 。
会报错,执行下面命令:
yum install libpng yum install libpng-devel yum install freetype-devel 。
此时安装完成后会生成一个gd.so的文件,记住这个路径 。
ls /usr/local/php5/lib/php/extensions/no-debug-non-zts-20121212/ curl.so gd.so opcache.so pcntl.so pdo_mysql.so 。
4:修改php的配置文件php.ini将gd.so的路径加入进去,如下加入到最后面就行 。
vim /usr/local/php5/php.ini [root@slb03 ~]# tail -1 /usr/local/php5/php.ini extension=/usr/local/php5/lib/php/extensions/no-debug-non-zts-20121212/gd.so 。
5:重启apache服务 。
/etc/init.d/httpd restart 。
。
采用phpize的方式安装,也不成功 。
提示Cannot find config.m4. 。
[root@hotdata gd]# php -i | grep -i --color gdPWD => /usr/include/php/ext/gd_SERVER["PWD"] => /usr/include/php/ext/gd[root@hotdata gd]# yum -y install m4Loaded plugins: securitySetting up Install ProcessPackage m4-1.4.13-5.el6.x86_64 already installed and latest versionNothing to do[root@hotdata gd]# yum -y install autoconfLoaded plugins: securitySetting up Install ProcessPackage autoconf-2.63-5.1.el6.noarch already installed and latest versionNothing to do[root@hotdata gd]# /usr/bin/phpize Cannot find config.m4. Make sure that you run "/usr/bin/phpize" in the top level source directory of the module
直接使用yum命令安装不成功,错误信息如下: 主要提示信息为需要安装依赖包,可是我已经安装了 。
# yum install gd gd-devel php-gdLoaded plugins: securitySetting up Install ProcessPackage gd-2.0.35-11.el6.x86_64 already installed and latest versionResolving Dependencies--> Running transaction check---> Package gd-devel.x86_64 0:2.0.35-11.el6 will be installed--> Processing Dependency: libpng-devel for package: gd-devel-2.0.35-11.el6.x86_64--> Processing Dependency: libjpeg-devel for package: gd-devel-2.0.35-11.el6.x86_64--> Processing Dependency: libXpm-devel for package: gd-devel-2.0.35-11.el6.x86_64--> Processing Dependency: libX11-devel for package: gd-devel-2.0.35-11.el6.x86_64--> Processing Dependency: freetype-devel for package: gd-devel-2.0.35-11.el6.x86_64--> Processing Dependency: fontconfig-devel for package: gd-devel-2.0.35-11.el6.x86_64---> Package php-gd.x86_64 0:5.4.45-56.el6.art will be installed--> Processing Dependency: php-common(x86-64) = 5.4.45-56.el6.art for package: php-gd-5.4.45-56.el6.art.x86_64--> Processing Dependency: libt1.so.5()(64bit) for package: php-gd-5.4.45-56.el6.art.x86_64--> Running transaction check---> Package fontconfig-devel.x86_64 0:2.8.0-5.el6 will be installed---> Package freetype-devel.x86_64 0:2.3.11-17.el6 will be installed--> Processing Dependency: freetype = 2.3.11-17.el6 for package: freetype-devel-2.3.11-17.el6.x86_64---> Package libX11-devel.x86_64 0:1.6.4-3.el6 will be installed--> Processing Dependency: libX11 = 1.6.4-3.el6 for package: libX11-devel-1.6.4-3.el6.x86_64--> Processing Dependency: pkgconfig(xcb) >= 1.11.1 for package: libX11-devel-1.6.4-3.el6.x86_64--> Processing Dependency: pkgconfig(xproto) for package: libX11-devel-1.6.4-3.el6.x86_64--> Processing Dependency: pkgconfig(xcb) for package: libX11-devel-1.6.4-3.el6.x86_64--> Processing Dependency: pkgconfig(kbproto) for package: libX11-devel-1.6.4-3.el6.x86_64---> Package libXpm-devel.x86_64 0:3.5.10-2.el6 will be installed--> Processing Dependency: libXt.so.6()(64bit) for package: libXpm-devel-3.5.10-2.el6.x86_64---> Package libjpeg-turbo-devel.x86_64 0:1.2.1-3.el6_5 will be installed---> Package libpng-devel.x86_64 2:1.2.49-2.el6_7 will be installed---> Package php-gd.x86_64 0:5.4.45-56.el6.art will be installed--> Processing Dependency: php-common(x86-64) = 5.4.45-56.el6.art for package: php-gd-5.4.45-56.el6.art.x86_64---> Package t1lib.x86_64 0:5.1.2-6.el6_2.1 will be installed--> Running transaction check---> Package freetype.x86_64 0:2.3.11-15.el6_6.1 will be updated---> Package freetype.x86_64 0:2.3.11-17.el6 will be an update---> Package libX11.x86_64 0:1.6.0-6.el6 will be updated---> Package libX11.x86_64 0:1.6.4-3.el6 will be an update--> Processing Dependency: libX11-common = 1.6.4-3.el6 for package: libX11-1.6.4-3.el6.x86_64---> Package libXt.x86_64 0:1.1.4-6.1.el6 will be installed---> Package libxcb-devel.x86_64 0:1.12-4.el6 will be installed--> Processing Dependency: libxcb = 1.12-4.el6 for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: pkgconfig(xau) >= 0.99.2 for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: libxcb-xkb.so.1()(64bit) for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: libxcb-xinput.so.0()(64bit) for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: libxcb-sync.so.1()(64bit) for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: libxcb-present.so.0()(64bit) for package: libxcb-devel-1.12-4.el6.x86_64--> Processing Dependency: libxcb-dri3.so.0()(64bit) for package: libxcb-devel-1.12-4.el6.x86_64---> Package php-gd.x86_64 0:5.4.45-56.el6.art will be installed--> Processing Dependency: php-common(x86-64) = 5.4.45-56.el6.art for package: php-gd-5.4.45-56.el6.art.x86_64---> Package xorg-x11-proto-devel.noarch 0:7.7-14.el6 will be installed--> Running transaction check---> Package libX11-common.noarch 0:1.6.0-6.el6 will be updated---> Package libX11-common.noarch 0:1.6.4-3.el6 will be an update---> Package libXau-devel.x86_64 0:1.0.6-4.el6 will be installed---> Package libxcb.x86_64 0:1.9.1-3.el6 will be updated---> Package libxcb.x86_64 0:1.12-4.el6 will be an update---> Package php-gd.x86_64 0:5.4.45-56.el6.art will be installed--> Processing Dependency: php-common(x86-64) = 5.4.45-56.el6.art for package: php-gd-5.4.45-56.el6.art.x86_64--> Finished Dependency ResolutionError: Package: php-gd-5.4.45-56.el6.art.x86_64 (atomic) Requires: php-common(x86-64) = 5.4.45-56.el6.art Installed: php-common-5.6.16-1.el6.remi.x86_64 (@remi-php56) php-common(x86-64) = 5.6.16-1.el6.remi Available: php-common-5.3.3-49.el6.x86_64 (base) php-common(x86-64) = 5.3.3-49.el6 Available: php-common-5.4.45-54.el6.art.x86_64 (atomic) php-common(x86-64) = 5.4.45-54.el6.art Available: php-common-5.4.45-56.el6.art.x86_64 (atomic) php-common(x86-64) = 5.4.45-56.el6.art Available: php55w-common-5.5.38-1.w6.x86_64 (webtatic) php-common(x86-64) = 5.5.38-1.w6 Available: php56w-common-5.6.40-1.w6.x86_64 (webtatic) php-common(x86-64) = 5.6.40-1.w6 Available: php70w-common-7.0.33-1.w6.x86_64 (webtatic) php-common(x86-64) = 7.0.33-1.w6 Available: php71w-common-7.1.26-1.w6.x86_64 (webtatic) php-common(x86-64) = 7.1.26-1.w6 Available: php71w-common-7.1.27-1.w6.x86_64 (webtatic) php-common(x86-64) = 7.1.27-1.w6 Available: php71w-common-7.1.28-1.w6.x86_64 (webtatic) php-common(x86-64) = 7.1.28-1.w6 Available: php71w-common-7.1.29-1.w6.x86_64 (webtatic) php-common(x86-64) = 7.1.29-1.w6 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest
最后采用这种方式安装成功了 。
yum install php-gd --enablerepo=remi-php56 。
到此这篇关于php遇到错误Call to undefined function ImageCreate()解决方法的文章就介绍到这了,更多相关undefined function ImageCreate内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/u013049553/article/details/51406893/ 。
最后此篇关于php遇到错误Call to undefined function ImageCreate()解决方法的文章就讲到这里了,如果你想了解更多关于php遇到错误Call to undefined function ImageCreate()解决方法的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!