2 writes to _pixelWidth
ReachFramework (2)
AlphaFlattener\ImageProxy.cs (2)
65
_pixelWidth
= image.PixelWidth;
115
_pixelWidth
= _image.PixelWidth;
19 references to _pixelWidth
ReachFramework (19)
AlphaFlattener\ImageProxy.cs (19)
91
return
_pixelWidth
;
124
_pixels = GetDecodedPixels(new Int32Rect(0, 0,
_pixelWidth
, _pixelHeight));
138
((bounds.X + bounds.Width) <=
_pixelWidth
) &&
189
double scaleX =
_pixelWidth
/ rect.Width;
198
Scale(rect.Width /
_pixelWidth
,
235
int count =
_pixelWidth
* _pixelHeight * 4;
246
Utility.BlendUnderColor(_pixels,
_pixelWidth
* _pixelHeight, color, opacity, opacityOnly);
256
Utility.BlendOverColor(_pixels,
_pixelWidth
* _pixelHeight, color, opacity, opacityOnly);
280
Utility.BlendPixels(_pixels, opacityOnly, brushPixels, brush.OpacityOnly,
_pixelWidth
* _pixelHeight, _pixels);
292
return brush.CreateBrushImage(trans,
_pixelWidth
, _pixelHeight);
321
Utility.BlendPixels(brushPixels, brush.OpacityOnly, _pixels, opacityOnly,
_pixelWidth
* _pixelHeight, _pixels);
381
int count =
_pixelWidth
* _pixelHeight;
407
int count =
_pixelWidth
* _pixelHeight * 4;
430
return BitmapSource.Create(
_pixelWidth
, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null, _pixels,
_pixelWidth
* 4);
466
bounds.Intersect(new Rect(0, 0,
_pixelWidth
, _pixelHeight));
468
double currentPixelCount =
_pixelWidth
* _pixelHeight;
477
clipBounds = new Rect(0, 0,
_pixelWidth
, _pixelHeight);
508
pixels = Utility.ClipPixels(_pixels,
_pixelWidth
, _pixelHeight, x0, y0, width, height);