F FrankDev Active Member Licensed User Longtime User May 18, 2020 #1 Hello, the new smartphones have a lot of new lenses built in. Wide angle, ultra wide angle, macro. Is it possible to adjust the whole thing to the respective camera / lens ? Regards Frank
Hello, the new smartphones have a lot of new lenses built in. Wide angle, ultra wide angle, macro. Is it possible to adjust the whole thing to the respective camera / lens ? Regards Frank
Erel B4X founder Staff member Licensed User Longtime User May 19, 2020 #2 Start with Camera2 example. Check the output of cam.Camera.CameraIDs. Does it return more than 2 ids? Upvote 0
Start with Camera2 example. Check the output of cam.Camera.CameraIDs. Does it return more than 2 ids?
F FrankDev Active Member Licensed User Longtime User May 19, 2020 #3 Hello what is the syntax of the command ? B4X: Dim id As String = Camera.CameraIDs Msgbox("Camera :" & id,"") Upvote 0
Hello what is the syntax of the command ? B4X: Dim id As String = Camera.CameraIDs Msgbox("Camera :" & id,"")
Erel B4X founder Staff member Licensed User Longtime User May 19, 2020 #4 You cannot use the advanced Camera2 API if you are still using the deprecated Msgbox for debugging. B4X: For Each id As String In cam.Camera.CameraIDs Log("id: " & id) Next Upvote 0
You cannot use the advanced Camera2 API if you are still using the deprecated Msgbox for debugging. B4X: For Each id As String In cam.Camera.CameraIDs Log("id: " & id) Next
F FrankDev Active Member Licensed User Longtime User May 19, 2020 #5 Msgbox I know, I just put that in for a quickie, to see what comes back. regards Frank Upvote 0