2 writes to _pixelHeight
ReachFramework (2)
AlphaFlattener\ImageProxy.cs (2)
66_pixelHeight = image.PixelHeight; 116_pixelHeight = _image.PixelHeight;
18 references to _pixelHeight
ReachFramework (18)
AlphaFlattener\ImageProxy.cs (18)
99return _pixelHeight; 124_pixels = GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth, _pixelHeight)); 139((bounds.Y + bounds.Height) <= _pixelHeight) 190double scaleY = _pixelHeight / rect.Height; 199rect.Height / _pixelHeight); 235int count = _pixelWidth * _pixelHeight * 4; 246Utility.BlendUnderColor(_pixels, _pixelWidth * _pixelHeight, color, opacity, opacityOnly); 256Utility.BlendOverColor(_pixels, _pixelWidth * _pixelHeight, color, opacity, opacityOnly); 280Utility.BlendPixels(_pixels, opacityOnly, brushPixels, brush.OpacityOnly, _pixelWidth * _pixelHeight, _pixels); 292return brush.CreateBrushImage(trans, _pixelWidth, _pixelHeight); 321Utility.BlendPixels(brushPixels, brush.OpacityOnly, _pixels, opacityOnly, _pixelWidth * _pixelHeight, _pixels); 381int count = _pixelWidth * _pixelHeight; 407int count = _pixelWidth * _pixelHeight * 4; 430return BitmapSource.Create(_pixelWidth, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null, _pixels, _pixelWidth * 4); 466bounds.Intersect(new Rect(0, 0, _pixelWidth, _pixelHeight)); 468double currentPixelCount = _pixelWidth * _pixelHeight; 477clipBounds = new Rect(0, 0, _pixelWidth, _pixelHeight); 508pixels = Utility.ClipPixels(_pixels, _pixelWidth, _pixelHeight, x0, y0, width, height);