Click or drag to resize
Ab4d.SharpEngine logo

RawImageData Properties

The RawImageData type exposes the following members.

Properties
 NameDescription
Public propertyData Gets the byte array with image data.
Public propertyStatic memberEmpty Gets a RawImageData with empty Data array and Width and Height set to zero and Format set to Bgra.
Public propertyFormat Gets the image format. To change the format, call the ChangeFormat(Format) method.
Public propertyHasTransparentPixels Nullable Boolean that can specify if the image data contains transparent pixels (alpha value is less then 1 for at least one pixel).
Public propertyHeight Gets the image height in pixels. To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
Public propertyIsPreMultipliedAlpha Nullable Boolean that can specify if the image data contains pre-multiplied alpha colors (colors are multiplied by alpha value).
Public propertyStatic memberOneBlackPixelImage Gets a static 1 x 1 bitmap data with one black pixel with alpha set to 1 and Format set to Bgra.
Public propertyStride Gets the image stride in bytes (length of one data row). To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
Public propertyWidth Gets the image width in pixels. To change the size, call the Resize(Int32, Int32, Int32, Int32, Boolean) method.
Top
See Also