[Library] 자바(Java)에서 썸네일 이미지 만들기 [썸네일 라이브러리, Thumbnailator]
·
▣ Tools/Library🎲
1. 썸네일 라이브러리, Thumbnailator - 다운로드 : https://mvnrepository.com/artifact/net.coobird/thumbnailator/0.4.8 2. Thumbnailator 사용방법 - sourceRegion() public static void main(String[] args) throws IOException { File file = new File("C:\\Users\\user\\Desktop\\thumb", "origin.jpg"); Thumbnails .of(new File("C:\\Users\\user\\Desktop\\thumb", "origin.jpg")) .sourceRegion(Positions.TOP_CENTER, 200, 200) .siz..
[Student] Lombok 적용(@Getter, @Setter)
·
◈ Human Project/Custom : Student🏫
[Student] Exception 적용(RangeException, NumberFormatException) 로 배열 수정" data-og-description="1. interface 분리 package service; public interface StudentService { void list(); void register(); void modify(); void remove(); } 2. ArrayList로 배열 수정 -.. yermi.tistory.com 1. class Student에 Lombok 적용하기 [꿀팁] Eclipse에 롬복(Lombok) 연동하기[코드 축약 라이브러리, Lombok] 1. Lombok 다운로드 및 설치 Project Lombok projectlombok.org 2..