iTextsharp - 将单选按钮图像添加到.pdf

时间:2018-05-24 14:30:51

标签: c# itext

如何将radiobutton的图像添加到.pdf?

我使用了itextsharp。选中单选按钮的图像应反映到.pdf

1 个答案:

答案 0 :(得分:0)

在评论中,很明显OP想要将System.Drawing.Bitmap图像(他碰巧从GUI单选按钮的Image属性中检索到)添加到PDF。

您通过iTextSharp.text.Image课程使用带有iText的PDF图像。

System.Drawing.Image drawingImage = radioButton54.Image;
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(drawingImage, BaseColor.WHITE);
image.ScaleToFit(10, 10);

如果要将其内联添加到段落中,请将其包装到Chunk中,然后将其与文本并排添加到段落中:

Paragraph paragraph = new Paragraph();
paragraph.Add("Hello, World!");
paragraph.Add(new Chunk(image, 0, 0));
paragraph.Add("Bye, World!");
document.Add(paragraph);

使用我手边的示例图像,可以创建类似于:

的图像

Example screen shot