Gets the original image of the given index by searching the output in order: OUTPUT_RETURN_BASE64, OUTPUT_SAVE.
This is a shortcut method, use GetOutputItems if you need more control.
Namespace: asprise_imaging_apiAssembly: asprise-imaging-scan.net-api (in asprise-imaging-scan.net-api.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Bitmap GetImage(
int index,
bool includeSave = true
)
Public Function GetImage (
index As Integer,
Optional includeSave As Boolean = true
) As Bitmap
public:
Bitmap^ GetImage(
int index,
bool includeSave = true
)
member GetImage :
index : int *
?includeSave : bool
(* Defaults:
let _includeSave = defaultArg includeSave true
*)
-> Bitmap
Parameters
- index
- Type: SystemInt32
the image of the given index or null if not available. - includeSave (Optional)
- Type: SystemBoolean
whether images acquired in SAVE output should be considered
Return Value
Type:
BitmapSee Also