Thanks for downloading Dynamsoft Barcode Reader Package!
Your download will start shortly. If your download does not begin, click here to retry.
Method | Description |
---|---|
setModeArgument |
Sets the optional argument for a specified mode in Modes parameters. |
getModeArgument |
Gets the optional argument for a specified mode in Modes parameters. |
getRuntimeSettings |
Get current runtime settings. |
updateRuntimeSettings |
Update runtime settings with a given struct. |
resetRuntimeSettings |
Resets all parameters to default values. |
Sets the optional argument for a specified mode in Modes parameters.
-(void)setModeArgument:(NSString* _Nonnull)modeName
index:(NSInteger)index
argumentName:(NSString* _Nonnull)argumentName
argumentValue:(NSString* _Nonnull)argumentValue
error:(NSError* _Nullable * _Nullable)error;
Parameters
[in] modesName
The mode parameter name to set argument.
[in] index
The array index of mode parameter to indicate a specific mode.
[in] argumentName
The name of the argument to set.
[in] argumentValue
The value of the argument to set.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Remark
Check follow link for available modes and arguments:
AccompanyingTextRecognitionModes
BarcodeColourModes
BinarizationModes
ColourClusteringModes
ColourConversionModes
DeformationResistingModes
ImagePreprocessingModes
IntermediateResultSavingMode
LocalizationModes
RegionPredetectionModes
ScaleUpModes
TextAssistedCorrectionMode
TextFilterModes
TextureDetectionModes
Code Snippet
Objective-C:
DynamsoftBarcodeReader *barcodeReader;
barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
iPublicRuntimeSettings *settings;
NSError __autoreleasing * _Nullable error;
NSMutableArray *mArray = [NSMutableArray arrayWithArray:settings.binarizationModes];
mArray[0] = [NSNumber numberWithInteger:EnumBinarizationModeLocalBlock];
settings.binarizationModes = mArray;
[barcodeReader updateRuntimeSettings:settings error:&error];
[barcodeReader setModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" argumentValue:"1" error:&error];
Swift:
let error: NSError? = NSError()
let mArray: NSMutableArray? = NSMutableArray()
let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
let settings = barcodeReader.getRuntimeSettings(error: nil)
mArray!.setArray(settings.binarizationModes as! [Any])
mArray![0] = EnumBinarizationMode.LocalBlock
settings.binarizationModes = mArray!
barcodeReader.updateRuntimeSettings(settings: settings, error: nil)
barcodeReader.setModeArgument(modeName: "BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", argumentValue: "1", error: &error)
Gets the optional argument for a specified mode in Modes parameters.
-(NSString* _Nonnull)getModeArgument:(NSString* _Nonnull)modeName
index:(NSInteger)index
argumentName:(NSString* _Nonnull)argumentName
error:(NSError* _Nullable * _Nullable)error;
Parameters
[in] modesName
The mode parameter name to get argument.
[in] index
The array index of mode parameter to indicate a specific mode.
[in] argumentName
The name of the argument to get.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Return value
the optional argument for a specified mode
Remark
Check follow link for available modes and arguments:
AccompanyingTextRecognitionModes
BarcodeColourModes
BinarizationModes
ColourClusteringModes
ColourConversionModes
DeformationResistingModes
ImagePreprocessingModes
IntermediateResultSavingMode
LocalizationModes
RegionPredetectionModes
ScaleUpModes
TextAssistedCorrectionMode
TextFilterModes
TextureDetectionModes
Code Snippet
Objective-C:
DynamsoftBarcodeReader *barcodeReader;
barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
iPublicRuntimeSettings *settings;
NSError __autoreleasing * _Nullable error;
NSString *argumentValue;
NSMutableArray *mArray = [NSMutableArray arrayWithArray:settings.binarizationModes];
mArray[0] = [NSNumber numberWithInteger:EnumBinarizationModeLocalBlock];
settings.binarizationModes = mArray;
[barcodeReader updateRuntimeSettings:settings error:&error];
[barcodeReader setModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" argumentValue:"1" error:&error];
argumentValue = [barcodeReader getModeArgument:@"BinarizationModes" index:0 argumentName:@"EnableFillBinaryVacancy" error:&error];
Swift:
let error: NSError? = NSError()
let mArray: NSMutableArray? = NSMutableArray()
let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
let settings = barcodeReader.getRuntimeSettings(error: nil)
mArray!.setArray(settings.binarizationModes as! [Any])
mArray![0] = EnumBinarizationMode.LocalBlock
settings.binarizationModes = mArray!
barcodeReader.updateRuntimeSettings(settings: settings, error: nil)
barcodeReader.setModeArgument(modeName: "BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", argumentValue: "1", error: nil)
let argumentValue = barcodeReader.getModeArgument(modeName: "BinarizationModes", index: 0, argumentName: "EnableFillBinaryVacancy", error: &error)
Get current settings and save them into a iPublicRuntimeSettings
struct.
- (iPublicRuntimeSettings* _Nullable)getRuntimeSettings:(NSError* _Nullable * _Nullable)error;
Parameters
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Return value
A DBRPublicRuntimeSettings storing current runtime settings.
Code Snippet
Objective-C:
DynamsoftBarcodeReader *barcodeReader;
barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
NSError __autoreleasing * _Nullable error;
[barcodeReader getRuntimeSettings:&error];
Swift:
let error: NSError? = NSError()
let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
let licenseString = barcodeReader.getRuntimeSettings(error: &error)
Update runtime settings with a given iPublicRuntimeSettings
struct.
- (void)updateRuntimeSettings:(iPublicRuntimeSettings* _Nonnull)settings
error:(NSError* _Nullable * _Nullable)error;
Parameters
[in] settings
The struct of template settings.
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
Objective-C:
DynamsoftBarcodeReader *barcodeReader;
barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
NSError __autoreleasing * _Nullable error;
iPublicRuntimeSettings *settings;
[barcodeReader updateRuntimeSettings:settings error:&error];
Swift:
let error: NSError? = NSError()
let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
let settings = barcodeReader.getRuntimeSettings(error: nil)
barcodeReader.updateRuntimeSettings(settings: settings, error: &error)
Reset all parameters to default values.
- (void)resetRuntimeSettings:(NSError* _Nullable * _Nullable)error;
Parameters
[in,out] error
Input a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
Code Snippet
Objective-C:
DynamsoftBarcodeReader *barcodeReader;
barcodeReader = [[DynamsoftBarcodeReader alloc] initWithLicense:@"t0260NwAAAHV***************"];
NSError __autoreleasing * _Nullable error;
[barcodeReader resetRuntimeSettings:&error];
Swift:
let error: NSError? = NSError()
let barcodeReader = DynamsoftBarcodeReader.init(license: "t0260NwAAAHV***************")
barcodeReader.resetRuntimeSettings(error: &error)
version 7.6.0