2017-09-25 95 views

回答

1

怎麼做就直接使用Imagick,並且不與Intervention.io庫打擾(至少要等到API可支持此操作)。

$wand = new Imagick(); 
$wand->addImage(new Imagick('output-16x16.ico')); 
$wand->addImage(new Imagick('output-32x32.ico')); 
$wand->writeImages('favicon.ico', true); 
+0

thanx emcconville。 – rbz