在laravel 4上找不到phmagick类

时间:2013-03-29 17:10:57

标签: laravel composer-php laravel-4

使用composer安装phmagick后,我发现了一个找不到类的错误。我认为这是因为Action类的加载方式,但有没有修复它?

1 个答案:

答案 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);