예제 #1
0
            public void Load(Stream stream)
            {
                chunks = new List <APNGChunk>();
                pngs   = new List <PNG>();

                // Create a new header (should be 1 per file) and
                // read it from the stream
                var header = new APNGHeader();

                try
                {
                    header.Read(stream);
                }
                catch (Exception)
                {
                    stream.Close();
                    throw;
                }

                APNGChunk chunk;
                PNG       png = null;

                // Read chunks from the stream until we reach the MEND chunk
                do
                {
                    // Read a generic Chunk
                    chunk = new APNGChunk();
                    try
                    {
                        chunk.Read(stream);
                    }
                    catch (Exception)
                    {
                        stream.Close();
                        throw;
                    }

                    // Take a look at the chunk type and decide what derived class to
                    // use to create a specific chunk
                    switch (chunk.ChunkType)
                    {
                    case acTLChunk.NAME:
                        if (headerChunk != null)
                        {
                            throw new ApplicationException(String.Format(
                                                               "Only one chunk of type {0} is allowed", chunk.ChunkType));
                        }
                        chunk = headerChunk = new acTLChunk(chunk);
                        break;

                    case MENDChunk.NAME:
                        chunk = new MENDChunk(chunk);
                        break;

                    case TERMChunk.NAME:
                        chunk = new TERMChunk(chunk);
                        break;

                    case BACKChunk.NAME:
                        chunk = new BACKChunk(chunk);
                        break;

                    case BKGDChunk.NAME:
                        chunk = new BKGDChunk(chunk);
                        break;

                    case fcTLChunk.NAME:
                        // This is the beginning of a new embedded PNG
                        chunk = new fcTLChunk(chunk);
                        png   = new PNG {
                            FCTL = chunk as fcTLChunk, IHDR = ihdrChunk
                        };
                        pngs.Add(png);
                        break;

                    case IHDRChunk.NAME:
                        chunk     = new IHDRChunk(chunk);
                        ihdrChunk = chunk as IHDRChunk;
                        break;

                    case IDATChunk.NAME:
                        chunk = new IDATChunk(chunk);
                        if (png != null)
                        {
                            png.IDAT = chunk as IDATChunk;
                        }
                        break;

                    case fdATChunk.NAME:
                        chunk = new fdATChunk(chunk);
                        if (png != null)
                        {
                            chunk.ChunkType = IDATChunk.NAME;
                            png.IDAT        = new IDATChunk(chunk);
                        }
                        break;

                    case IENDChunk.NAME:
                        chunk = new IENDChunk(chunk);
                        for (var i = 0; i < pngs.Count; i++)
                        {
                            pngs[i].IEND = chunk as IENDChunk;
                        }
                        break;

                    default:
                        break;
                    }
                    // Add the chunk to our list of chunks
                    chunks.Add(chunk);
                }while (chunk.ChunkType != IENDChunk.NAME);
            }
예제 #2
0
 /// <summary>
 ///     Add an IDAT Chunk to end end of existing list.
 /// </summary>
 internal void AddIDATChunk(IDATChunk chunk)
 {
     idatChunks.Add(chunk);
 }