我需要将 PDF 转换为具有透明度的 GIF。我在官方网站上找到了一些代码示例,但结果与预期不符。共同的问题是失去透明度。
我在下面尝试的代码:
using (var doc = new Doc()) {
doc.Read(source);
doc.Rendering.SaveAlpha = true;
// the following lines from the official site.
// And this is showing blue background if I set this.
// But I don't need this blue background.
// Do not set anything special won't give good result.
//doc.Color.SetRgb(0, 0, 255); // blue background ...
//doc.FillRect(); // ... so you can see transparency
doc.Rendering.Save(destination);
doc.Clear();
}
如果有人对此有经验,请提供帮助。谢谢