Java/PDF RTF/PNG

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

Adding PNG image to document

   <source lang="java">

import java.io.FileOutputStream; import com.lowagie.text.Document; import com.lowagie.text.Image; import com.lowagie.text.Paragraph; import com.lowagie.text.pdf.PdfWriter; public class ImagesPNGPDF {

 public static void main(String[] args) {
   Document document = new Document();
   try {
     PdfWriter.getInstance(document, new FileOutputStream("ImagesPNGPDF.pdf"));
     document.open();
     document.add(new Paragraph("load a png image file"));
     Image img = Image.getInstance("logo.png");
     document.add(img);
   } catch (Exception e) {
     System.err.println(e.getMessage());
   }
   document.close();
 }

}

      </source>
   
  
 
  



Adding PNG image to Pdf document

   <source lang="java">

import java.io.FileOutputStream; import com.lowagie.text.Chunk; import com.lowagie.text.Document; import com.lowagie.text.Image; import com.lowagie.text.Phrase; import com.lowagie.text.pdf.PdfWriter; public class ImagesBOTTOMPDF {

 public static void main(java.lang.String[] args) {
   Document document = new Document();
   try {
     PdfWriter.getInstance(document, new FileOutputStream("ImagesBOTTOMPDF.pdf"));
     document.open();
     Image imageRight = Image.getInstance("logo.png");
     imageRight.setAlignment(Image.BOTTOM);
     for (int i = 0; i < 100; i++) {
       document.add(new Phrase("Text "));
     }
     document.add(imageRight);
     for (int i = 0; i < 100; i++) {
       document.add(new Phrase("Text "));
     }
   } catch (Exception e) {
     System.err.println(e.getMessage());
   }
   document.close();
 }

}

      </source>