Dev study and notes

[java] iTEXT 라이브러리 PDF 이클립스/JAVA 연동 본문

studyLog

[java] iTEXT 라이브러리 PDF 이클립스/JAVA 연동

devlunch4 2020. 11. 5. 19:22
반응형

참고한 링크 > www.tutorialspoint.com/itext/index.htm

 

iText Tutorial - Tutorialspoint

iText Tutorial Apache iText is an open-source Java library that supports the development and conversion of PDF documents. In this tutorial, we will learn how to use iText to develop Java programs that can create, convert, and manipulate PDF documents. Audi

www.tutorialspoint.com

 

 

필자의 경우 공식사이트에서 제공하는 링크중 github 링크에서 해당 pom.xml 을 코드를 복사하여  나중에 입력시 사용했다.

더보기

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>SanthoshExample</groupId> <artifactId>SanthoshExample</artifactId> <version>0.0.1-SNAPSHOT</version> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> </plugins> </build> <dependencies> <!-- always needed --> <dependency> <groupId>com.itextpdf</groupId> <artifactId>kernel</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>io</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>layout</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>forms</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>pdfa</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>sign</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>barcodes</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>font-asian</artifactId> <version>7.0.2</version> </dependency> <dependency> <groupId>com.itextpdf</groupId> <artifactId>hyph</artifactId> <version>7.0.2</version> </dependency> </dependencies> </project>

 

iText 7 Core

 

iText 7 Core

Want to generate and manipulate your PDFs with an open source (AGPL) or commercially licensed PDF library and SDK? Get started with iText 7 today!

itextpdf.com

itextpdf.com/en/resources/downloads

 

Where and how to download iText PDF and add-ons

On this page you will find everything to get you through the installation process.

itextpdf.com

 

일단 준비물은 거의 끝난듯하다.

 

 

이후 itext를 적용시킬 프로젝트를 생성한다.

 

그다음

해당프로젝트 마우스오른쪽 클릭 >> Configure >> Convert to maven Project. 를 눌러 프로젝트를 변환한다.

그러면 pom.xml 이 생성된다.

사진상엔 빨간엑스가 있지만 원래는 없다!

해당 pom.xml 내용을 포스트 내용 위의 더보기 내용으로 내용으로 바꾼다.

 

그러면 자동으로 이클립스에서 무언가 다운로드 및 저장이되고..

완료가 된다!

반응형
Comments