3 writes to _pixels
ReachFramework (3)
AlphaFlattener\ImageProxy.cs (3)
117
_pixels
= null;
124
_pixels
= GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth, _pixelHeight));
218
_pixels
= null;
17 references to _pixels
ReachFramework (17)
AlphaFlattener\ImageProxy.cs (17)
83
return
_pixels
;
122
if (
_pixels
== null)
239
_pixels
[i] = map[
_pixels
[i]];
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
);
321
Utility.BlendPixels(brushPixels, brush.OpacityOnly,
_pixels
, opacityOnly, _pixelWidth * _pixelHeight,
_pixels
);
364
if (
_pixels
== null) // Not decoded yet
385
if (
_pixels
[i * 4 + 3] != 255)
413
if (
_pixels
[i] != 0)
424
if (
_pixels
== null)
430
return BitmapSource.Create(_pixelWidth, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null,
_pixels
, _pixelWidth * 4);
500
if (
_pixels
== null)
508
pixels = Utility.ClipPixels(
_pixels
, _pixelWidth, _pixelHeight, x0, y0, width, height);