Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个表格,我需要在右侧的文本附近添加一个小图像。我怎样才能做到这一点?
PdfPCell cell = new PdfPCell(); cell.AddElement(new Paragraph("text", font)); Image img = Image.GetInstance("path"); img.ScaleAbsolute(width, height); cell.AddElement(img);