(PECL imagick 2, PECL imagick 3)
Imagick::setBackgroundColor — 设置对象的默认背景色
$background
设置对象的默认背景色。
背景
成功时返回 true。
true
小心,在导入具有透明度的 SVG 之前设置 bgcolor!:-/ <?php $im = new Imagick(); $im->setBackgroundColor(new ImagickPixel('transparent')); $im->readImage('carte_Alain2.svg'); $im->setImageFormat("png32"); header('Content-type: image/png'); echo $im; ?>