일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Spring
- Java
- 자바
- 노마드코더
- 쿠킹덤
- 오블완
- 딥러닝
- oracle
- 개발자
- JavaScript
- 자바스크립트
- 쿠킹덤공략
- 크리스마스
- programmers
- Unity
- 티스토리챌린지
- 이클립스
- 쿠키런킹덤
- 쿠키런킹덤공략
- 프로그래머스
- 쿠키런킹덤크리스마스
- edwith
- dart
- Eclipse
- 홀리데이익스프레스
- SQL
- 웹개발
- HTML
- MySQL
- 유니티
- Today
- Total
Dev study and notes
[java] iTEXT 라이브러리 PDF 이클립스/JAVA 연동 본문
참고한 링크 > 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
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 내용을 포스트 내용 위의 더보기 내용으로 내용으로 바꾼다.
그러면 자동으로 이클립스에서 무언가 다운로드 및 저장이되고..
완료가 된다!
'StudyAndDev' 카테고리의 다른 글
[java][git] 간단요약 이클립스 깃과 연결 연동 eclipse git github (0) | 2020.11.11 |
---|---|
[java] iTEXT 사용 PDF 문서 생성 (이클립스/JAVA) (0) | 2020.11.05 |
[java] PDFBOX 페이지생성 (java 라이브러리 활용/이클립스 활용/pdf 만들기) (0) | 2020.11.05 |
[java] PDFBOX 생성 (java 라이브러리 활용/이클립스 활용/pdf 만들기) (0) | 2020.11.05 |
[java] PDFBOX(Apache) 라이브러리 추가/연동/설치 (JAVA 자바 ECLIPSE 이클립스) (0) | 2020.11.05 |