使用作曲家安装 phmagick 后,我收到一个找不到类的错误。我认为这是因为 Action 类的加载方式,但有解决办法吗?
问问题
210 次
1 回答
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);
于 2013-04-12T15:07:01.660 回答