我正在尝试从 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);
}