将透明PDF(专色)转换为透明png(删除白色背景)

时间:2018-04-10 06:37:45

标签: imagemagick transparency inkscape

我正在使用 imageMagick 将PDF图像转换为透明背景的png文件。这是我尝试转换的一些代码。任何人都可以帮助我吗?

在imageMagick中:

$image = new Imagick();
$image->readImage("document.pdf");
$image->setBackgroundColor(new ImagickPixel('transparent')); 
$image->setImageFormat("png");
header("Content-Type: image/png");
$image->writeImage("document.png"); 

也使用Inkscape:

inkscape  --export-png=document.png --export-dpi=200 -background none --without-gui document.pdf

0 个答案:

没有答案