Java/PDF RTF/Table Cell Margin

Материал из Java эксперт
Перейти к: навигация, поиск

Cell Padding Leading

   <source lang="java">

import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.PageSize; import com.lowagie.text.Paragraph; import com.lowagie.text.pdf.PdfPCell; import com.lowagie.text.pdf.PdfPTable; import com.lowagie.text.pdf.PdfWriter; public class CellPaddingLeadingPDF {

 public static void main(String[] args) {
   Document document = new Document(PageSize.A4.rotate(), 10, 10, 10, 10);
   try {
     PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("CellPaddingLeadingPDF.pdf"));
     document.open();
     PdfPTable table = new PdfPTable(2);
     PdfPCell cell;
     Paragraph p = new Paragraph("Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text ");
     table.addCell("default");
     table.addCell(p);
     table.addCell("padding 10");
     cell = new PdfPCell(p);
     cell.setPadding(10f);
     table.addCell(cell);
     table.addCell("no padding at all");
     document.add(table);
   } catch (Exception de) {
     de.printStackTrace();
   }
   document.close();
 }

}

      </source>
   
  
 
  



Cell Padding Top Left

   <source lang="java">

import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.PageSize; import com.lowagie.text.Paragraph; import com.lowagie.text.pdf.PdfPCell; import com.lowagie.text.pdf.PdfPTable; import com.lowagie.text.pdf.PdfWriter; public class CellPaddingTopLeftPDF {

 public static void main(String[] args) {
   Document document = new Document(PageSize.A4.rotate(), 10, 10, 10, 10);
   try {
     PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("CellPaddingTopLeftPDF.pdf"));
     document.open();
     PdfPTable table = new PdfPTable(2);
     PdfPCell cell;
     Paragraph p = new Paragraph("Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text ");
     table.addCell("cell");
     table.addCell(p);
     table.addCell("cell");
     cell = new PdfPCell(p);
     cell.setPaddingTop(0f);
     cell.setPaddingLeft(20f);
     table.addCell(cell);
     table.addCell("cell");
     document.add(table);
   } catch (Exception de) {
     de.printStackTrace();
   }
   document.close();
 }

}

      </source>