I created the pdf using iText. In that, how to set the background image to the particular PdfCell and place the text in that same cell..
I set the background image to that cell by:
cell.addElement(image_green_left);
In case of both text and image, it show only image and text was hidden.
cell.addElement(image_green_left);
cell.addElement(new Paragraph("Test 3"));
table.addCell(cell);
How to show both text and image?