8000 GitHub - murdak/fast-android-pdf: An android pdf writer - fast and safe
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

murdak/fast-android-pdf

 
 

Repository files navigation

fast-android-pdf

An android pdf writer - fast and safe

Feature

  • Create PDF document in your android project fast and safe.
  • Have text and graphics method.
  • Add your paragraph with auto break line.
  • Add images and shapes
  • Add table

How to use

//create document
PDFDocument document = new PDFDocument("Document's Name", "Document's Author");
//Add a page
PDFPage page = document.addPage(PredefinedSize.A4_HEIGHT,PredefinedSize.A4_WIDTH);
//Add text to page
page.addText("This is an android pdf writer library", 70, 60, PredefinedFont.Helvetica, 10);
....
//Create PDF
document.createPDF("YourPDFName.pdf");

About

An android pdf writer - fast and safe

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%
0