image 썸네일형 리스트형 [Java] 모바일에서 촬영 된 사진이 회전이 되어서 저장이 돼요. 문제코드 public String convertBinary(MultipartFile files) throws Exception{ String fileName = StringUtils.cleanPath(Objects.requireNonNull(files.getOriginalFilename())) ; BufferedImage image = ImageIO.read(files.getInputStream()); //ImageBuffer Null Check if (image == null) { throw new IllegalArgumentException("Invalid image file."); } ByteArrayOutputStream baos = new ByteArrayOutputStream().. 더보기 [Java] 내 이미지는 왜 압축이 되었는가? 문제코드 public String convertBinary(MultipartFile files) throws Exception{ String fileName = StringUtils.cleanPath(Objects.requireNonNull(files.getOriginalFilename())) ; BufferedImage image = ImageIO.read(files.getInputStream()); //ImageBuffer Null Check if (image == null) { throw new IllegalArgumentException("Invalid image file."); } ByteArrayOutputStream baos = new ByteArrayOutputStream().. 더보기 이전 1 다음