Resource Base
Table of contents

DCEPhotoListener

The interface that provide method for capturing photo from the camera.

@protocol DCEPhotoListener <NSObject>
Method Type Description
photoOutputCallback required The callback method for user to receive the captured photo.

photoOutputCallback

The callback method for user to receive the captured photo. User can complete the method by adding code to execute with the capture image.

- (void)photoOutputCallback:(NSData *)jpegBytes;

Parameters

jpegBytes The byte data of the captured image.

Code Snippet

  • Objective-C
  • Swift
  1. @interface ViewController ()<DCEPhotoListener>
    - (void)configurationDCE(){
       // When you trigger takePhote method, the library firstly capture a photo
       // When the photo is captured and stored in memory, it will be processed by DBR
       [_dce takePhoto:self]
    }
    - (void)photoOutputCallback:(NSData *)jpegBytes{
       // Add your code to execute when photo is captured.
       // For example, you can use Dynamsoft Barcode Reader (DBR) to decode the byte image.
       NSArray<iTextResult*> *barcodeResults = [_dbr decodeFileInMemory:jpegBytes error:nil];
    }
    
  2. class ViewController: UIViewController, DCEPhotoListener {
       func configurationDCE(){
          // When you trigger takePhote method, the library firstly capture a photo
          // When the photo is captured and stored in memory, it will be processed by DBR
          dce.takePhoto()
       }
       func photoOutputCallback(_ jpegByte: Data){
          // Add your code to execute when photo is captured.
          // For example, you can use Dynamsoft Barcode Reader (DBR) to decode the byte image.
          let barcodeResults = try? dbr.decodeFileInMemory(jpegByte)
       }
    }
    

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

version 2.3.20

  • Latest version
  • Version 4.x
    • Version 4.2.0
    • Version 4.0.2
    • Version 4.0.1
    • Version 4.0.0
  • Version 3.x
    • Version 3.0.3
    • Version 3.0.2
    • Version 3.0.1
    • Version 3.0.0
  • Version 2.x
    • Version 2.3.21
    • Version 2.3.20
    • Version 2.3.12
    • Version 2.3.11
    • Version 2.3.10
    • Version 2.3.5
    • Version 2.3.4
    • Version 2.3.3
    • Version 2.3.2
    • Version 2.3.1
    • Version 2.3.0
    • Version 2.1.4
    • Version 2.1.3
    • Version 2.1.1
    • Version 2.0.0
Change +