Hi!
we started working with the CamEx Class and tested everything.
We got the strange thing, that zooming in works, but it zooms in the maximum possible.
Zooming out doesn't work at all.
We searched through the whole community and tried every solution we could find, but still no luck.
We tried at last the following:
we started working with the CamEx Class and tested everything.
We got the strange thing, that zooming in works, but it zooms in the maximum possible.
Zooming out doesn't work at all.
We searched through the whole community and tried every solution we could find, but still no luck.
We tried at last the following:
B4X:
Sub btnplus_Click
camEx.Zoom = 2
camEx.CommitParameters
End Sub
Sub btnminus_Click
camEx.Zoom = 0
camEx.CommitParameters
End Sub
Sub SeekBar1_ValueChanged (Value As Int, UserChanged As Boolean)
If UserChanged = False Or camEx.IsZoomSupported = False Then Return
camEx.Zoom = Value / 100 * camEx.GetMaxZoom
camEx.CommitParameters
End Sub
Last edited: