IMAGE 썸네일형 리스트형 구글 머티리얼 디자인 백터 아이콘 무료이며 오픈 소스입니다. 다운로드: https://github.com/google/material-design-icons/releases/download/1.0.0/material-design-icons-1.0.0.zipsvg 파일이며 png파일에 sprite css 조합으로 쓸 수 있는 파일까지 다 들어 있습니다.svg만 다운로드: 깃: https://github.com/google/material-design-icons/releases/tag/1.0.0 더보기 이미지에서 픽셀 배열 얻기. File imgf = new File("source.png");BufferedImage img = ImageIO.read(imgf);int width = img.getWidth();int height = img.getHeight();int[] pixels=new int[width*height];PixelGrabber grab = new PixelGrabber(img, 0, 0, width, height, pixels, 0,width);grab.grabPixels(); 이러면 pixels 배열에 픽셀값들이 int 배열로 들어간다. int[][] picture=new int[width][height];for(int i=0;i 더보기 이전 1 다음