2

我正在尝试从 gif 中提取所有帧并将它们放在一列中,下一帧在最后一帧之下。所以一个人可以向下滚动一个高大的图像并查看 gif。我可以提取所有帧,但是当我尝试将其写出来时,我得到的只是一张黑色画布。宽度和高度是正确的,它说它正确读取了图像。这里出了什么问题?

    String img = "test.gif"; //original gif
    String[] temp = img.split(".gif");
    String base = temp[0];

    try {
        ImageReader reader = ImageIO.getImageReadersBySuffix("GIF").next();
        ImageInputStream in = ImageIO.createImageInputStream(new File(img));
        reader.setInput(in);

        int rows = reader.getNumImages(true);  // How many images there will be 
        int cols = 1;
        int chunks = rows;
        int chunkWidth, chunkHeight;
        int type;

        type = reader.read(0).getType(); //Get single frame file type
        chunkWidth = reader.read(0).getWidth(); //Get single frame width
        chunkHeight = reader.read(0).getHeight();  //Get single frame height

        //Initializing the final image
        BufferedImage finalImg = new BufferedImage(chunkWidth, chunkHeight * rows, type);

        for (int i = 0, count = reader.getNumImages(true); i < count; i++) {
            BufferedImage image = reader.read(i); //read next frame from gif
            finalImg.createGraphics().drawImage(image, chunkWidth, chunkHeight * i, null); //append new image to new file
        }

        System.out.println("Image concatenated.....");
        ImageIO.write(finalImg, "png", new File("finalImg1234555.png")); //final png with all gif images in it

    } catch (IOException ex) {
        Logger.getLogger(Gifextract.class.getName()).log(Level.SEVERE, null, ex);
    }
4

1 回答 1

3

finalImg.createGraphics().drawImage(image, chunkWidth, chunkHeight * i, null);

x 坐标是chunkWidth,这意味着图像的左边缘从 开始chunkWidth。因为finalImg只有chunkWidth你的宽度完全超出了finalImg' 的范围。我怀疑 x 坐标应该是0.

于 2013-01-06T09:24:56.817 回答