0
使用composer安裝phmagick後我得到一個類未找到的錯誤。我認爲這是因爲Action類如何加載,但有沒有修復它?在laravel上找不到的phmagick類4
使用composer安裝phmagick後我得到一個類未找到的錯誤。我認爲這是因爲Action類如何加載,但有沒有修復它?在laravel上找不到的phmagick類4
查看關於phMagick的實際文檔vendor/francodacosta/phmagick/docs/index.html
。這裏有一個適用於我的例子...
$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);