2017-09-25 33 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