  | 
RawImageData Properties | 
The RawImageData type exposes the following members.
Properties|   | Name | Description | 
|---|
  | Data | 
            Gets the byte array with image data.
             | 
   | Empty | 
            Gets a RawImageData with empty Data array and Width and Height set to zero and Format set to Bgra.
             | 
  | Format | 
            Gets the image format. To change the format, call the ChangeFormat(Format) method.
             | 
  | HasTransparentPixels | 
            Nullable Boolean that can specify if the image data contains transparent pixels (alpha value is less then 1 for at least one pixel).
             | 
  | Height | 
            Gets the image height in pixels. To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
             | 
  | IsPreMultipliedAlpha | 
            Nullable Boolean that can specify if the image data contains pre-multiplied alpha colors (colors are multiplied by alpha value).
             | 
   | OneBlackPixelImage | 
            Gets a static 1 x 1 bitmap data with one black pixel with alpha set to 1 and Format set to Bgra.
             | 
  | Stride | 
            Gets the image stride in bytes (length of one data row). To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
             | 
  | Width | 
            Gets the image width in pixels. To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
             | 
Top
See Also