프로그래밍/알고리즘 썸네일형 리스트형 이미지에서 픽셀 배열 얻기. 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 더보기 자바. URL로부터 파일 읽기. URL url=new URL("주소"); 이런게 있으면 String inputLine;try { InputStreamReader isr; isr = new InputStreamReader(url.openStream()); BufferedReader in = new BufferedReader(isr); while((inputLine = in.readLine())!=null){} in.close();} catch (IOException e) { e.printStackTrace(); } 더보기 자바 ImageIcon 크기 변경하는 방법 ImageIcon 변경할아이콘 = new ImageIcon("이미지.png");Image 변경할이미지 = 변경할아이콘.getImage(); //ImageIcon을 Image로 변환.Image 변경된이미지 = 변경할이미지.getScaledInstance(가로, 세로, java.awt.Image.SCALE_SMOOTH);ImageIcon 변경된아이콘 = new ImageIcon(변경된이미지); //Image로 ImageIcon 생성 더보기 이전 1 2 3 다음