2 writes to _pixelHeight
ReachFramework (2)
AlphaFlattener\ImageProxy.cs (2)
59
_pixelHeight
= image.PixelHeight;
109
_pixelHeight
= _image.PixelHeight;
18 references to _pixelHeight
ReachFramework (18)
AlphaFlattener\ImageProxy.cs (18)
92
return
_pixelHeight
;
117
_pixels = GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth,
_pixelHeight
));
132
((bounds.Y + bounds.Height) <=
_pixelHeight
)
183
double scaleY =
_pixelHeight
/ rect.Height;
192
rect.Height /
_pixelHeight
);
228
int count = _pixelWidth *
_pixelHeight
* 4;
239
Utility.BlendUnderColor(_pixels, _pixelWidth *
_pixelHeight
, color, opacity, opacityOnly);
249
Utility.BlendOverColor(_pixels, _pixelWidth *
_pixelHeight
, color, opacity, opacityOnly);
273
Utility.BlendPixels(_pixels, opacityOnly, brushPixels, brush.OpacityOnly, _pixelWidth *
_pixelHeight
, _pixels);
285
return brush.CreateBrushImage(trans, _pixelWidth,
_pixelHeight
);
314
Utility.BlendPixels(brushPixels, brush.OpacityOnly, _pixels, opacityOnly, _pixelWidth *
_pixelHeight
, _pixels);
374
int count = _pixelWidth *
_pixelHeight
;
400
int count = _pixelWidth *
_pixelHeight
* 4;
423
return BitmapSource.Create(_pixelWidth,
_pixelHeight
, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null, _pixels, _pixelWidth * 4);
459
bounds.Intersect(new Rect(0, 0, _pixelWidth,
_pixelHeight
));
461
double currentPixelCount = _pixelWidth *
_pixelHeight
;
470
clipBounds = new Rect(0, 0, _pixelWidth,
_pixelHeight
);
501
pixels = Utility.ClipPixels(_pixels, _pixelWidth,
_pixelHeight
, x0, y0, width, height);