2013-03-29 84 views

回答

1

查看關於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);