我正在使用ABCPDF8从HTML生成图像(.PNG):
theDoc.AddHtml("FooBar HTML text")
theDoc.Rendering.GetData(".PNG")它工作得很好,除了一个小问题:
我想在另一个图形前面显示这样的图像。因此它必须有一个透明的背景,但它总是有一个白色的背景。
是否可以使页面背景透明?
致以亲切的问候,Mar
发布于 2013-05-17 14:06:29
使用
theDoc.AddHtml("FooBar HTML text")
theDoc.Rendering.SaveAlpha = true
theDoc.Rendering.GetData(".PNG")https://stackoverflow.com/questions/16565906
复制相似问题