コード例 #1
0
        private byte[] ReadFrameIndices(GifImageDescriptor imageDescriptor)
        {
            int        dataSize   = currentStream.ReadByte();
            LzwDecoder lzwDecoder = new LzwDecoder(currentStream);

            byte[] indices = lzwDecoder.DecodePixels(imageDescriptor.Width, imageDescriptor.Height, dataSize);
            return(indices);
        }
コード例 #2
0
 private byte[] ReadFrameIndices(GifImageDescriptor imageDescriptor)
 {
     int dataSize = currentStream.ReadByte();
     LzwDecoder lzwDecoder = new LzwDecoder(currentStream);
     byte[] indices = lzwDecoder.DecodePixels(imageDescriptor.Width, imageDescriptor.Height, dataSize);
     return indices;
 }