2 writes to _pixelHeight
ReachFramework (2)
AlphaFlattener\ImageProxy.cs (2)
58_pixelHeight = image.PixelHeight; 108_pixelHeight = _image.PixelHeight;
18 references to _pixelHeight
ReachFramework (18)
AlphaFlattener\ImageProxy.cs (18)
91return _pixelHeight; 116_pixels = GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth, _pixelHeight)); 131((bounds.Y + bounds.Height) <= _pixelHeight) 182double scaleY = _pixelHeight / rect.Height; 191rect.Height / _pixelHeight); 227int count = _pixelWidth * _pixelHeight * 4; 238Utility.BlendUnderColor(_pixels, _pixelWidth * _pixelHeight, color, opacity, opacityOnly); 248Utility.BlendOverColor(_pixels, _pixelWidth * _pixelHeight, color, opacity, opacityOnly); 272Utility.BlendPixels(_pixels, opacityOnly, brushPixels, brush.OpacityOnly, _pixelWidth * _pixelHeight, _pixels); 284return brush.CreateBrushImage(trans, _pixelWidth, _pixelHeight); 313Utility.BlendPixels(brushPixels, brush.OpacityOnly, _pixels, opacityOnly, _pixelWidth * _pixelHeight, _pixels); 373int count = _pixelWidth * _pixelHeight; 399int count = _pixelWidth * _pixelHeight * 4; 422return BitmapSource.Create(_pixelWidth, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null, _pixels, _pixelWidth * 4); 458bounds.Intersect(new Rect(0, 0, _pixelWidth, _pixelHeight)); 460double currentPixelCount = _pixelWidth * _pixelHeight; 469clipBounds = new Rect(0, 0, _pixelWidth, _pixelHeight); 500pixels = Utility.ClipPixels(_pixels, _pixelWidth, _pixelHeight, x0, y0, width, height);