Click or drag to resize

ICallbackHandlerSaveScreenShot Method

Save a captured screenshot.

Namespace:  Internal.SharpBgfx
Assembly:  NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
Syntax
C#
void SaveScreenShot(
	string path,
	int width,
	int height,
	int pitch,
	IntPtr data,
	int size,
	bool flipVertical
)

Parameters

path
Type: SystemString
The path at which to save the image.
width
Type: SystemInt32
The width of the image.
height
Type: SystemInt32
The height of the image.
pitch
Type: SystemInt32
The number of bytes between lines in the image.
data
Type: SystemIntPtr
A pointer to the image data to save.
size
Type: SystemInt32
The size of the image memory.
flipVertical
Type: SystemBoolean
true if the image origin is bottom left instead of top left; otherwise, false.
See Also