본문 바로가기

itext3

iText 워터마크 넣기 iText5 PDF문서에 워터마크 넣기 1234567891011121314151617181920212223242526272829303132333435 manipulatePdf("PDF만든경로", "워터마크가 포함된 PDF를 저장할 ", watermark); public void manipulatePdf(String src, String dest, String imgsrc) throws IOException, DocumentException { PdfReader reader = new PdfReader(src); int n = reader.getNumberOfPages(); PdfStamper stamper = new PdfStamper(reader, new FileOutputStream(dest)); /.. 2016. 11. 24.
PDF파일 보여주기->출력 PDF파일을 브라우저에 보여주는 방법... chrome의 경우기본적으로 PDF viewer를 제공해주기 때문에 PDF파일을 base64로 변환하여 리턴 해주면, javascript 1window.open("data:application/pdf;base64, " + vjData.base64EncodedPDF);cs 이렇게 해주면 새 창으로 PDF를 볼 수 있습니다. IE의 경우브라우저에서 PDF viewer를 기본으로 제공해주지 않습니다.PDF를 볼 수 있는 프로그램(예:Acrobat Reader DC)를 설치하면 브라우저에서도 볼 수 있지만, Data URI를 지원하지도 않기 때문에 다른 방법으로 봐야 합니다. 몇 가지 방법을 찾던 도중에... java 12345678910byte[] fileByte =.. 2016. 7. 29.
HTML을 PDF로 저장하기 (iText) pom.xml1234567891011121314151617181920 com.itextpdf itextpdf 5.5.9 com.itextpdf itext-pdfa 5.5.9 com.itextpdf itext-xtra 5.5.9 com.itextpdf.tool xmlworker 5.5.9 cs html12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849thead {color:green;}tbody {color:blue;}tfoot {color:red;}table, th, td { border: 1px solid black;} Month Savings Sum $180 January $100 Februa.. 2016. 7. 1.