티스토리 뷰
http://itextpdf.com/
현재 최신버전 : 5.1.0
iText 기능
Supported by iText
Partly supported by iText
PDF 생성하기
public void createPdf(String filename) throws DocumentException, IOException { // step 1 Document document = new Document(); // step 2 PdfWriter.getInstance(document, new FileOutputStream(filename)); // step 3 document.open(); // step 4 document.add(new Paragraph("Hello World!")); // step 5 document.close(); }
참고자료
댓글