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();
}
誰かがこれに経験を持っているなら助けてください。ありがとう