Android Question Camera View Customization

sasidhar

Active Member
Licensed User
Longtime User
Hi,

I have a requirement to customize camera view before taking a picture.
ex: when I start camera, in the camera view I need to place external images see the view and then take picture.

Is this possible the with camera library, please let me know the library being used.

thanks
Sasidhar.M
 

eurojam

Well-Known Member
Licensed User
Longtime User
You can use the CameraExClass (https://www.b4x.com/android/forum/t...tends-the-camera-library-functionality.23801/)
when you initialize the camera, the preview is assigned to a Panel like:
B4X:
Private Sub InitializeCamera
    camEx.Initialize(Panel1, frontCamera, Me, "Camera1")
    frontCamera = camEx.Front
  
End Sub
Then you can add whatever you want to this panel like buttons, imageviews ....so on (see example linked above)

stefan
 
Upvote 0
Top