image 메타정보 및 색상 추출(rgb, cmyk)
java에서 이미지 메타 정보를 추출할 경우 rgb와 cmyk의 포멧이 다를 경우 지원하지 않는 타입(Unsupported Image Type) 에러가 발생한다. rgb와 cmyk의 read는의 경우 다르게 구현하여야 한다. ● 이미지 포멧 RGB 이미지 메타 추출 try { String imageUrl = "http://RGBimageURL"; imageUrl = UriUtils.encodePath(imageUrl, Charset.forName("utf-8")); InputStream input = new URL(imageUrl).openStream(); BufferedImage image = ImageIO.read(input); int width = image.getWidth(); int height..
라이브러리
2021. 12. 24. 12:05
공지사항