我想在我的php代码中使用方法imagecreatefrompng
。在调用此方法之前,我已检查路径是指文件,而mime类型为image/png
这些是我的手表:
但是当我尝试这个方法$this->image = imagecreatefrompng($bg);
时,正在运行的代码会停止,没有任何异常:
try {
$this->image = imagecreatefrompng($bg);
$this->colour = ImageColorAllocate($this->image, 0, 0, 0); // Black
} catch (Exception $e) {
print_r($e);
}
如何检查错误?