AGENT.Contrib.Drawing.CompressedBitmapReader.GetFirstPixel C# (CSharp) Method

GetFirstPixel() public method

public GetFirstPixel ( int &x, int &y, System.Color &color ) : bool
x int
y int
color System.Color
return bool
        public bool GetFirstPixel(ref int x, ref int y, ref Color color)
        {
            _pixelCounter = 0;
            _bytePosition = 3;
            _currColor = Color.White;
            _counter = 0;

            return GetNextPixel(ref x, ref y, ref color);;
        }
CompressedBitmapReader