자바에서는 imageIO 클래스를 이용해 이미지를 컨트롤 할 수 있다. 이미지 포맷 변환 프로세스 사용자가 파일 저장 서버단에서 파일 전송 후 png 파일인 경우 파일 포맷을 변경 변환된 jpg 파일 저장 multipartFile 타입 File 타입으로 캐스팅 public static File multipartFileToFile(MultipartFile file) throws IOException { File convFile = new File(file.getOriginalFilename()); convFile.createNewFile(); FileOutputStream fos = new FileOutputStream(convFile); fos.write(file.getBytes()); fos.close..