2

我需要设置图像的不透明度并使用 iTextSharp 将其添加到 PDF 中。我查看了http://itextpdf.com/examples/但找不到任何这样做的工作示例。

任何人都可以帮助我或指导我找到正确的资源。

4

1 回答 1

5
//create new graphics state and assign opacity    
PdfGState graphicsState = new PdfGState();
graphicsState.FillOpacity = 0.2F;  // (or whatever)
//set graphics state to pdfcontentbyte    
pdfData.SetGState(graphicsState);
于 2013-01-16T16:44:19.453 回答