软件编程
位置:首页>> 软件编程>> Android编程>> 解析:android 如何从JPEG生成BufferedImage

解析:android 如何从JPEG生成BufferedImage

  发布时间:2022-06-03 20:11:50 

标签:JPEG,生成,BufferedImage

如下所示:


private void readImage(String filename)  throws FileNotFoundException, IOException {
        FileInputStream fIn = new FileInputStream(filename);

//需要替换这边的两句:
        JPEGImageDecoder jpeg_decode = JPEGCodec.createJPEGDecoder(fIn);
        BufferedImage image = jpeg_decode.decodeAsBufferedImage();
        width = image.getWidth();
        height = image.getHeight();
        int[] rgbdata = new int[width * height];
        image.getRGB(0,0,width,height,rgbdata,0,width);
        bytes = new byte[rgbdata.length];
        doubles = new double[rgbdata.length];
        for (int i = 0; i < bytes.length; i++) {
          bytes[i]    = (byte)  (rgbdata[i] & 0xFF);
          doubles[i]  = (double)(rgbdata[i]);
        }
    }
0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com