Document Capture
In this section, you will find all the necessary information for using and integrating the Unico IDCloud SDK into your iOS applications for document capture
Atualizado
Isto foi útil?
In this section, you will find all the necessary information for using and integrating the Unico IDCloud SDK into your iOS applications for document capture
Atualizado
Isto foi útil?
This guide has been designed to help you quickly and easily implement the Android SDK. Below, you'll find the step-by-step process for the complete integration. If you wish to customize the experience further, check out the iOS Customization section.
In this camera mode, there is a capture frame to assist the user in positioning the document correctly. After positioning the document correctly, the user should click the button to capture the photo of the document.
The SDK does not perform any type of validation on what is being captured.
In this camera mode, it is possible to capture the following documents:
RG: Capture of the RG (separate front and back).
CNH: Capture of the CNH opened.
CNH Front: Capture of the front of the CNH.
CNH Back: Capture of the back of the CNH.
CPF: Capture of the CPF document.
Without Silhouette: Capture of a generic document.
To get started with the Unico IDCloud iOS SDK, import the SDK and implement the AcessoBioManagerDelegate
interface within the ViewController you wish to use.
The implementation of this class is straightforward and can be done with just a few lines of code. All you need to do is instantiate the builder by providing the relevant context and override the callback methods with the business logic of your application:
Note that, as shown in the previous example, the implementation work of the AcessoBioManagerDelegate
interface is largely about configuring the callback methods. Each method is called in a specific situation based on the SDK's response.
Simply override the methods illustrated in the previous step with your application's business logic:
onErrorAcessoBioManager(_ error: ErrorBio!)
This method is invoked whenever an implementation error occurs while using any of the methods, such as providing an incorrect document type for the document capture functionality.
When invoked, the method receives a parameter of type ErrorBio
, which contains details about the error. Learn more about the ErrorBio
type in the error handling article of this SDK.
onUserClosedCameraManually()
This method is invoked whenever the user manually closes the camera, such as by clicking the "Back" button.
onSystemClosedCameraTimeoutSession()
This method is also invoked once the maximum session time is reached (without capturing any image).
It can be configured in the builder through the setTimeoutSession method. This method should receive the maximum session time in seconds. You can modify the maximum session time for your user when using the face detection feature (Selfie camera with intelligent capture). If the time limit for capturing the photo is exceeded, you can present a customizable message or instruction to the user. The default value is 40 seconds, and the minimum value is also 40 seconds.
onSystemChangedTypeCameraTimeoutFaceInference()
This method is invoked once the maximum time for detecting the user's face is reached (without detecting anything). In this case, the camera mode is automatically switched to manual capture mode (without the intelligent capture silhouette).
The maximum capture time when using face detection (Selfie camera with intelligent capture) is 13 seconds. If the user faces difficulties capturing the photo using face detection and exceeds the time limit set in the process, the capture automatically switches to manual mode, aiming to facilitate the process for the user (TimeoutToFaceInference).
All of the above methods must be implemented as indicated in your project (even if with no logic). Otherwise, the project will not compile successfully.
The camera opening method (which is called in the next step) needs to know what to do when it successfully captures an image or encounters an error during the process. The "actions" to be taken are specified to the camera opening method through the configuration of delegates, which are called in success or error situations.
By configuring the delegates, you can define what happens in your app during error situations (onErrorDocument
method) or success situations (onSuccessDocument
method) when capturing images.
To configure the delegates, you need to implement the DocumentCameraDelegate
and AcessoBioDocumentDelegate
interfaces:
onSucessDocument
MethodWhen an image is successfully captured, this method is invoked and returns an object of type ResultCamera
, which is used later in the REST API request.
The ResultCamera
object returns two attributes: base64
and encrypted
.
The base64
attribute can be used if you want to display a preview of the image in your app.
Both the encrypted
and base64
attributes can be sent in the REST API calls of the by Client.
If you need to convert the base64 to bitmap, the standard method does not work for Android. You need to split the string at the comma (,) to make it work. If you want to learn more, read the article: How to convert a Base64 string into a Bitmap image to show it in an ImageView?
onErrorDocument
When an error occurs during image capture, this method is invoked and returns an object of type ErrorBio
.
To open the camera, it is necessary to prepare it using the method prepareDocumentCamera
. This method takes as a parameter the implementation of the DocumentCameraDelegate
class and the JSON with the credentials generated in the previous step.
When the camera is ready, the event onCameraReadyDocument
is triggered, which receives as a parameter an object of type AcessoBioCameraOpenerDelegate
.
You should override this method, opening the camera with the object received through the openDocument()
method, receiving the document type parameters to be captured, which are:
DocumentEnums.CPF
Capture the front of the CPF
DocumentEnums.CNH
Capture the open CNH
DocumentEnums.cnhFrente
Capture the front of the CNH
DocumentEnums.cnhVerso
Capture the back of the CNH
DocumentEnums.RG
Capture the open RG
DocumentEnums.rgFrente
Capture the front of the RG
DocumentEnums.rgVerso
Capture the back of the RGo RG
DocumentEnums.none
Capture any other document
If you need to capture a document for which we don't have a specific frame (e.g., RNE, among others), use the DocumentEnums.none
frame, which will provide a generic, rectangular frame that can be used to guide any capture.
The delegates implemented above (referred to here as Self):
If an error occurs while preparing the camera, the onCameraFailedDocument
event is triggered. You should implement this method according to the business logic of your app.
In case of success, the onSuccessDocument
event is triggered, as explained in the section above.
Capturing the images is only the first part of the journey. After capturing the image, you need to send the base64
generated by the SDK to the by Client
REST APIs. Learn more in the CreateProcess section of the by Client.
Still need help?
Didn't find something or still need help? If you're already a client or partner, you can reach out through our Help Center.