I've created a table and I need to add a small image near the text, in the right. How can I do this?
PdfPCell cell = new PdfPCell();
cell.AddElement(new Paragraph("text", font));
Image img = Image.GetInstance("path");
img.ScaleAbsolute(width, height);
cell.AddElement(img);