0
我創建了一個包含48個圖像的表格。我把它放在細胞的右側。所以我想把相同的單元格放在圖像的數量上。在左側。與itextsharp相同的單元格中的文本和圖像
這裏是我的部分代碼:
for (int i = x; i <= 48; i += 4)
{
int number = i + 4;
imageFilePath = "images/image" + number + ".jpeg";
jpg = iTextSharp.text.Image.GetInstance(imageFilePath);
jpg.ScaleAbsolute(166.11023622047f, 124.724409448829f);
jpg.BorderColor = BaseColor.BLUE;
string numberofcard = i.ToString();
cell = new PdfPCell(jpg);
cell.FixedHeight = 144.56692913386f;
cell.Border = 0;
cell.HorizontalAlignment = Element.ALIGN_RIGHT;
cell.VerticalAlignment = Element.ALIGN_MIDDLE;
table5.AddCell(cell);
}
我怎麼會在電池的左上角插入圖片的數量?
我會使用單元格事件來做到這一點。 –
我怎麼能做到這一點? – NickName