I am generating pdf
in android using itext
library.Format of pdf is shown in image
Approach i am using to generate this format is using
Pdfptable
.
The description tag is dynamic means it can be of multiple lines. when description tag is of 4-5 line every thing is perfect but if it is of half page the PDF doesn't look nice because of all the unnecessary white space; see sample.pdf.
// TODO Auto-generated method stub
Document document = new Document(PageSize.A4);
File f = null;
try {
f = createFile("sample.pdf");
FileOutputStream ficheroPdf = new FileOutputStream(
f.getAbsolutePath());
PdfWriter writer = PdfWriter.getInstance(document, ficheroPdf);
document.open();
/*LineSeparator line = new LineSeparator(1, 100, null, Element.ALIGN_CENTER, -2);
paragraph.add(line);*/
ArrayList<SampleModel> movies = new ArrayList<SampleModel>(15);
for (int i = 0; i < 13; i++) {
movies.add(new SampleModel());
}
for (int j = 0; j < movies.size(); j++) {
Bitmap bitmap = BitmapFactory.decodeResource(mActivity.getResources(),
movies.get(j).getDrawableId());
ByteArrayOutputStream stream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
Image img = Image.getInstance(stream.toByteArray());
img.setAlignment(Image.LEFT | Image.TEXTWRAP);
img.setBorder(Image.BOX);
img.setBorderWidth(20);
img.setBorderColor(Color.WHITE);
img.scaleAbsolute(200f, 200f);
//table with 2 columns
PdfPTable table = new PdfPTable(2);
table.setHorizontalAlignment(Element.ALIGN_LEFT);
table.getDefaultCell().setBorder(Rectangle.NO_BORDER);
PdfPCell cell = new PdfPCell(img);
cell.setVerticalAlignment(Element.ALIGN_TOP);
cell.setBorderColor(new Color(16777215));
cell.setRowspan(5);
table.addCell(cell);
table.addCell(new Paragraph(" Snag Name"));
table.addCell(new Paragraph(" Date : 25 Aug 2015"));
table.addCell(new Paragraph(" Sub Contractor : Test company 2"));
table.addCell(new Paragraph(" Status : Completed"));
table.addCell(new Paragraph(" Description : Description Description Description Description Description Description Description Description Description Description Description Description "
+ "Description"
+ "Description"
+ "Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description Description" ));
document.add(table);
// add line seperator
document.add(Chunk.NEWLINE);
LineSeparator line = new LineSeparator(1, 100, null, Element.ALIGN_CENTER, -2);
document.add(line);
document.add(Chunk.NEWLINE);
}
Toast.makeText(mActivity, "Pdf generated", Toast.LENGTH_SHORT).show();
} catch (DocumentException e) {
Log.e("pdf error", e.getMessage());
} catch (IOException e) {
Log.e("pdf error", e.getMessage());
} finally {
document.close();
try {
File file = f;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
}
catch (ActivityNotFoundException e){
Toast.makeText(mActivity, "No app found to open pdf", Toast.LENGTH_SHORT).show();
}
catch (Exception e) {
// TODO: handle exception
Toast.makeText(mActivity, "Exception", Toast.LENGTH_SHORT).show();
}
}
`
After introducing setSplitLate()
, my PDF looks like this sample_new.pdf and that's not satisfactory either.
Your table content is distorted when the page in your document is changing. To avoid this you need to set header and footer to your pages and skip the content and set it to new page if its divided between two pages. Here is an example here
To set header and footer here