ZForge.Controls.TreeViewAdv.GifDecoder.GifDecoder C# (CSharp) Method

GifDecoder() public method

public GifDecoder ( Stream stream, bool makeTransparent ) : System
stream Stream
makeTransparent bool
return System
        public GifDecoder(Stream stream, bool makeTransparent)
        {
            _makeTransparent = makeTransparent;
            if (Read(stream) != 0)
                throw new InvalidOperationException();
        }