Yes
Yes
Capture an Image using cameraView.captureImage(callback) method
Steps:
cameraView.captureImage(callback) methodan Image taken and an immediate callback received at the mentioned callback in captureImage method
Image captured successfully, but I have to wait from 3-4 seconds to receive the callback
no other projects reproduce that issue.
I found the issue, when setting camera preferences through resource declaration in xml, they are not applied, but when setting them programmatically it can read them and they are applied.
My issue was in capture method that should be set to still not standard, so all what I did is :
cameraView.setMethod(CameraKit.Constants.METHOD_STILL);
And now it is working perfectly and image capture callback just received directly.
I found the issue, when setting camera preferences through resource declaration in xml, they are not applied, but when setting them programmatically it can read them and they are applied.
My issue was in capture method that should be set to
stillnotstandard, so all what I did is :
cameraView.setMethod(CameraKit.Constants.METHOD_STILL);And now it is working perfectly and image capture callback just received directly.
This won't work any longer
This won't work any longer.
Please help!!
Most helpful comment
I found the issue, when setting camera preferences through resource declaration in xml, they are not applied, but when setting them programmatically it can read them and they are applied.
My issue was in capture method that should be set to
stillnotstandard, so all what I did is :cameraView.setMethod(CameraKit.Constants.METHOD_STILL);And now it is working perfectly and image capture callback just received directly.