![]() |
Atlas-Cronos
7.3.0
|
IPixels provides basic methods to handle pixels. More...
Public Member Functions | |
| void | LockPixelData () |
| Locks the PixelData. More... | |
| void | UnlockPixelData () |
| Unlocks the PixelData. More... | |
| void | SetSize (int width, int height) |
| Sets a new size of the IPixels. More... | |
Properties | |
| int | Width [get] |
| Returns the Width in pixels. /summary> | |
| int | Height [get] |
| Returns the Height in pixels. More... | |
| ImagePixelFormat | PixelFormat [get] |
| Gets the PixelFormat of the pixels. More... | |
| int | Stride [get] |
| Distance in bytes between starts of consecutive lines in the source image. More... | |
| IntPtr | PixelData [get] |
| Pointer to pixel data. More... | |
IPixels provides basic methods to handle pixels.
| void Flir.Atlas.Image.Interfaces.IPixels.LockPixelData | ( | ) |
Locks the PixelData.
The application should call LockPixelData before using the PixelData pointer.
Implemented in Flir.Atlas.Image.Helpers.BitmapWrapper, and Flir.Atlas.Image.Helpers.BitmapSourceWrapper.
| void Flir.Atlas.Image.Interfaces.IPixels.SetSize | ( | int | width, |
| int | height | ||
| ) |
Sets a new size of the IPixels.
| width | New width. |
| height | New height. |
Implemented in Flir.Atlas.Image.Helpers.BitmapSourceWrapper, and Flir.Atlas.Image.Helpers.BitmapWrapper.
| void Flir.Atlas.Image.Interfaces.IPixels.UnlockPixelData | ( | ) |
Unlocks the PixelData.
The application should call UnlockPixelData after processing the PixelData.
Implemented in Flir.Atlas.Image.Helpers.BitmapSourceWrapper, and Flir.Atlas.Image.Helpers.BitmapWrapper.
|
get |
Returns the Height in pixels.
|
get |
Pointer to pixel data.
Before using the PixelData the application must call LockPixelData and UnlockPixelData when it's done processing the pixel data.
|
get |
Gets the PixelFormat of the pixels.
|
get |
Distance in bytes between starts of consecutive lines in the source image.
1.8.14