Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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 29 30
Tags
more
Archives
Today
Total
관리 메뉴

고마구의 개발 블로그

240730 15주차 화요일 - Spring 12 본문

KDT풀스택과정 공부

240730 15주차 화요일 - Spring 12

고마구 2024. 7. 30. 18:17

pdf 읽기

<!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
<dependency>
    <groupId>org.apache.pdfbox</groupId>
    <artifactId>pdfbox</artifactId>
    <version>3.0.1</version>
</dependency>

 

광학인식

<!-- https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j -->
<dependency>
    <groupId>net.sourceforge.tess4j</groupId>
    <artifactId>tess4j</artifactId>
    <version>5.7.0</version>
</dependency>

 

https://genie-dev.tistory.com/145

 

[Maven] Tesseract 사용법

1. 먼저 Tesseract 라이브러리를 불러온다 maven 사이트 접속해서 오늘날짜 기준 가장 최신버전으로 선택했다. https://mvnrepository.com/artifact/net.sourceforge.tess4j/tess4j/5.2.0 2. pom.xml에 dependency 추가. net.sourcef

genie-dev.tistory.com