3 writes to _pixels
ReachFramework (3)
AlphaFlattener\ImageProxy.cs (3)
110
_pixels
= null;
117
_pixels
= GetDecodedPixels(new Int32Rect(0, 0, _pixelWidth, _pixelHeight));
211
_pixels
= null;
17 references to _pixels
ReachFramework (17)
AlphaFlattener\ImageProxy.cs (17)
76
return
_pixels
;
115
if (
_pixels
== null)
232
_pixels
[i] = map[
_pixels
[i]];
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
);
314
Utility.BlendPixels(brushPixels, brush.OpacityOnly,
_pixels
, opacityOnly, _pixelWidth * _pixelHeight,
_pixels
);
357
if (
_pixels
== null) // Not decoded yet
378
if (
_pixels
[i * 4 + 3] != 255)
406
if (
_pixels
[i] != 0)
417
if (
_pixels
== null)
423
return BitmapSource.Create(_pixelWidth, _pixelHeight, _image.DpiX, _image.DpiY, PixelFormats.Pbgra32, null,
_pixels
, _pixelWidth * 4);
493
if (
_pixels
== null)
501
pixels = Utility.ClipPixels(
_pixels
, _pixelWidth, _pixelHeight, x0, y0, width, height);