AGENT.Contrib.Drawing.CompressedBitmapReader.GetFirstPixel C# (CSharp) Méthode

GetFirstPixel() public méthode

public GetFirstPixel ( int &x, int &y, System.Color &color ) : bool
x int
y int
color System.Color
Résultat 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