Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

Camera Enhancer Methods

Note:

  • Camera Enhancer methods are removed in 9.0 version. Please use the video methods for video barcode scanning if you are using the latest version.
Method Description
SetCameraEnhancerParam Set the parameters for Dynamsoft Camera Enhancer in Barcode reader

This page illustrates the controlling of Dynamsoft Camera Enhancer. To get a better understanding of this section, please read more about Dynamsoft Camera Enhancer.

SetCameraEnhancerParam

Set the callback parameters for Camera Enhancer

  • Objective-C
  • Swift
  1. iDCESettingParameters* para = [[iDCESettingsParameters alloc] init];
    para.cameraInstance = _dce;
    para.textResultDelegate = self;
    [_barcodeReader setCameraEnhancerPara:para];
    
  2. let para = iDCESettingParameters.init()
    para.cameraInstance = dce
    para.textResultDelegate = self
    barcodeReader.setCameraEnhancerPara(para)
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: