Skip to content

Latest commit

 

History

History
75 lines (52 loc) · 1.28 KB

File metadata and controls

75 lines (52 loc) · 1.28 KB
layout title description keywords needAutoGenerateSidebar noTitleIndex needGenerateH3Content breadcrumbText permalink
default-layout
Android CameraView Class - Dynamsoft Camera Enhancer
This is the documentation - Android CameraView Class page of Dynamsoft Camera Enhancer.
Camera Enhancer, Android, CameraView
true
true
true
Android CameraView Class
/programming/android/auxiliary-api/dcecameraview-v1.0.3.html

CameraView

This page is for CameraView Class. CameraView is designed to Make basic settings on the overlay.

class com.dynamsoft.dce.CameraView
Method Name Description
addOverlay Add overlay
removeOverlay Remove overlay
setBrushColor Set the brush color

 

addOverlay

Add overlay on located barcode.

void addOverlay()

Code Snippet

cameraView.addOverlay();

 

removeOverlay

Remove the overlay.

void removeOverlay()

Code Snippet

cameraView.removeOverlay();

 

setBrushColor

void setBrushColor(String color)

Parameters

String: A string value that refers to a color.

Code Snippet

cameraView.setBrushColor("Put your color string here");