PHP-GD:Driver (GD) could not be
2020-11-20 本文已影响0人
卧槽无情
用PHP写了一个图层覆盖的接口中,用了一下intervention/image这个工具,结果遇到
在使用 new ImageManager(['driver' => 'GD']);方法中报错,异常信息:Driver (GD) could not be instantiated.
解决方式:GD 更换小写 gd ,正确写法:new ImageManager(['driver' => 'gd']);