PHP imagecreatefrompng会毫无例外地停止代码

时间:2017-10-24 07:41:02

标签: php png

我想在我的php代码中使用方法imagecreatefrompng。在调用此方法之前,我已检查路径是指文件,而mime类型为image/png这些是我的手表:

evidence of correct file

但是当我尝试这个方法$this->image = imagecreatefrompng($bg);时,正在运行的代码会停止,没有任何异常:

try {
        $this->image = imagecreatefrompng($bg);
        $this->colour = ImageColorAllocate($this->image, 0, 0, 0); // Black
    } catch (Exception $e) {
        print_r($e);
    } 

如何检查错误?

1 个答案:

答案 0 :(得分:0)

问题在于我的机器上没有安装gd库。所以我跟着this link安装了它,现在每件事情都很顺利。