3 writes to _pixels
ReachFramework (3)
AlphaFlattener\ImageProxy.cs (3)
109
_pixels
= null;
116
_pixels
= GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth, _pixelHeight));
210
_pixels
= null;
17 references to _pixels
ReachFramework (17)
AlphaFlattener\ImageProxy.cs (17)
75
return
_pixels
;
114
if (
_pixels
== null)
231
_pixels
[i] = map[
_pixels
[i]];
238
Utility.BlendUnderColor(
_pixels
, _pixelWidth * _pixelHeight, color, opacity, opacityOnly);
248
Utility.BlendOverColor(
_pixels
, _pixelWidth * _pixelHeight, color, opacity, opacityOnly);
272
Utility.BlendPixels(
_pixels
, opacityOnly, brushPixels, brush.OpacityOnly, _pixelWidth * _pixelHeight,
_pixels
);
313
Utility.BlendPixels(brushPixels, brush.OpacityOnly,
_pixels
, opacityOnly, _pixelWidth * _pixelHeight,
_pixels
);
356
if (
_pixels
== null) // Not decoded yet
377
if (
_pixels
[i * 4 + 3] != 255)
405
if (
_pixels
[i] != 0)
416
if (
_pixels
== null)
422
return BitmapSource.Create(_pixelWidth, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null,
_pixels
, _pixelWidth * 4);
492
if (
_pixels
== null)
500
pixels = Utility.ClipPixels(
_pixels
, _pixelWidth, _pixelHeight, x0, y0, width, height);