我正在使用 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