getContainsImages method
Gets the indicates whether the BioSeal contains images.
return Indicates whether the BioSeal contains images. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
bool getContainsImages() {
Pointer<Bool> pContainsImages = calloc();
try {
var err = biosealSDK.id3Bioseal_GetContainsImages(_pHandle.value, pContainsImages);
if (err != BiosealError.success.value) {
throw BiosealException(err);
}
final vContainsImages = pContainsImages.value;
return vContainsImages;
} finally {
calloc.free(pContainsImages);
}
}