Image

BufferedImage srcBufferedImage = null;
        try {
            srcBufferedImage = ImageIO.read(new FileInputStream("c:/1.jpg"));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        File destFile = new File("c:/2.jpg");
        int destHeight = 400;
        int destWidth = 500;
        File watermarkFile = new File("c:/3.jpg");
       
        FileImageInputStream fis = null;
        byte[] bytes = null;
        ByteArrayOutputStream bo = new ByteArrayOutputStream();
        try {
            fis = new FileImageInputStream(new File("c:/1.jpg"));

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        byte[] bs = new byte[1024];
        int content = 0;
        try {
            while ((content = fis.read(bs)) != -1) {
                //bo.write(content);
                bo.write(bs,0,content);
            }
            bytes = bo.toByteArray();
            Image image = Toolkit.getDefaultToolkit().createImage(bytes);
            Image target = image.getScaledInstance(50, 50, 20);
            ImageShow show = new ImageShow(target);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (fis != null) {
                try {
                    fis.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                if (bo != null) {
                    try {
                        bo.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    }

你可能感兴趣的:(Image)