프로그래밍/WEB
JAVA 이미지 픽셀 컬러 추출
이미지의 특정 부분의 픽셀을 뽑아내야 할 때가 있다. 오늘은 간단히 이미지의 특정 픽셀의 컬러를 추출하는 방법을 포스팅하려 한다. 12345678910111213141516171819202122public static getImgPixel (String url) { BufferedImage image = null; try { image = ImageIO.read(new File(url)); int x = image.getWidth(null); int y = image.getHeight(null); Color color = new Color(image.getRGB(x-1, y-1)); //이미지의 맨 마지막 픽셀의 값 int red = color.getRed(); int blue = color.getBlu..
2019. 6. 10. 16:15
최근댓글