使用composer安装phmagick后,我发现了一个找不到类的错误。我认为这是因为Action类的加载方式,但有没有修复它?
答案 0 :(得分:1)
查看vendor/francodacosta/phmagick/docs/index.html
有关phMagick的实际文档。这是一个适合我的例子......
$phMagick = new \phMagick\Core\Runner();
$action = new \phMagick\Action\Convert($this->originalFile, $this->newFile);
// optimize the image
$action->optimize();
// sets image quality
$action->quality(70);
// execute the convert action
$phMagick->run($action);