All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.javafx.iio.png.PNGIDATChunkInputStream Maven / Gradle / Ivy

There is a newer version: 23-ea+3
Show newest version
/*
 * Copyright (c) 2009, 2014, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.  Oracle designates this
 * particular file as subject to the "Classpath" exception as provided
 * by Oracle in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

package com.sun.javafx.iio.png;

import com.sun.javafx.iio.common.ImageTools;
import java.io.DataInputStream;
import java.io.EOFException;
import java.io.IOException;
import java.io.InputStream;

/**
 * A stream which exposes only the IDAT chunk data content of a PNG stream.
 *
 * 

Once all IDAT chunks have been read, the read() methods will * return -1 and isFoundAllIDATChunks() * true. Once isFoundAllIDATChunks() returns * true, the length and type of the first chunk after the last * IDAT chunk may be found by calling getNextChunkLength() and * getNextChunkType(), respectively. The source stream will at * this point be positioned at the first byte of the data field after the last * IDAT chunk (which could be the first byte of the CRC code if the length is * zero).

*/ public class PNGIDATChunkInputStream extends InputStream { static final int IDAT_TYPE = 0x49444154; private DataInputStream source; private int numBytesAvailable = 0; private boolean foundAllIDATChunks = false; private int nextChunkLength = 0; private int nextChunkType = 0; /** * Create the stream. * * @param input stream positioned at the beginning of the data field of the * first IDAT chunk in the PNG stream. * @param firstIDATChunkLength the length of the data field of the first * IDAT chunk. */ PNGIDATChunkInputStream(DataInputStream input, int firstIDATChunkLength) throws IOException { if (firstIDATChunkLength < 0) { throw new IOException("Invalid chunk length"); } this.source = input; this.numBytesAvailable = firstIDATChunkLength; } private void nextChunk() throws IOException { if (!foundAllIDATChunks) { ImageTools.skipFully(source, 4); // CRC int chunkLength = source.readInt(); if (chunkLength < 0) { throw new IOException("Invalid chunk length"); } int chunkType = source.readInt(); if (chunkType == IDAT_TYPE) { numBytesAvailable += chunkLength; } else { foundAllIDATChunks = true; nextChunkLength = chunkLength; nextChunkType = chunkType; } } } boolean isFoundAllIDATChunks() { return foundAllIDATChunks; } int getNextChunkLength() { return nextChunkLength; } int getNextChunkType() { return nextChunkType; } @Override public int read() throws IOException { if (numBytesAvailable == 0) { nextChunk(); } if (numBytesAvailable == 0) { return -1; } else { --numBytesAvailable; return source.read(); } } @Override public int read(byte[] b, int off, int len) throws IOException { if (numBytesAvailable == 0) { nextChunk(); if (numBytesAvailable == 0) { return -1; } } int totalRead = 0; while (numBytesAvailable > 0 && len > 0) { int numToRead = len < numBytesAvailable ? len : numBytesAvailable; int numRead = source.read(b, off, numToRead); if (numRead == -1) { throw new EOFException(); } numBytesAvailable -= numRead; off += numRead; len -= numRead; totalRead += numRead; if (numBytesAvailable == 0 && len > 0) { nextChunk(); } } return totalRead; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy