我一直在将我的网站更新为PHP 7.1.7以及IIS,并且遇到了imagecreatetrucolor抛出500错误的问题。
http://localhost/test.php 500 (Internal Server Error)
该文件中唯一的代码行是
<?php imagecreatetruecolor(10,10) ?>
这已经在PHP 5.6.31和Apache的网站上工作并返回
resource(2) of type (gd)
GD成像与7.1.1中的phpinfo()列为
GD imaging Rasmus Lerdorf, Stig Bakken, Jim Winstead, Jouni Ahto, Ilia Alshanetsky, Pierre-Alain Joye, Marcus Boerger
这是错误
Fatal error: Uncaught Error: Call to undefined function imagecreatetruecolor() in D:\Intranet\www\public\test.php:11 Stack trace: #0 {main} thrown in D:\Intranet\www\public\test.php on line 11
问题是什么?
答案 0 :(得分:2)
根据您的评论确保您已安装php7.1-gd
并已启用
查看此答案可能会有所帮助 call-to-undefined-function-imagecreatetruecolor