이미지 썸네일 만들기

0

Spring

목록 보기
17/23
  • 게시글에 이미지를 업로드하면, 업로드된 첨부파일을 #8888로 받아와서 파일을 읽고, 그걸 Thumbnailator라는 라이브러리의 createThumbnail메서드를 이용해서 썸네일 파일을 만들어 준다.
  • 읽을 대상 : f1, 출력할 대상: 새로운 t_f1파일
//섬네일파일 만들기
		int width=100;
		int height=100;
		String thumbFileName = "t2_" + fileName; //섬네일파일명
		File thumbFile = new File(saveDirFile, thumbFileName);
		FileOutputStream thumbnailOS = new FileOutputStream(thumbFile);//출력스트림
		InputStream thumbnailIS = f1.getInputStream(); //첨부파일 입력스트림
					
		Thumbnailator.createThumbnail(thumbnailIS, thumbnailOS, width, height);
profile
백엔드를 공부하고 있습니다.

0개의 댓글