add capture quality constants

This commit is contained in:
Radu Popovici 2016-03-20 22:39:30 +02:00
parent 5659cc7809
commit d9432ec98d
1 changed files with 12 additions and 0 deletions

View File

@ -69,6 +69,7 @@ public class RCTCameraModule extends ReactContextBaseJavaModule {
{
put("Aspect", getAspectConstants());
put("Type", getTypeConstants());
put("CaptureQuality", getCaptureQualityConstants());
put("CaptureMode", getCaptureModeConstants());
put("CaptureTarget", getCaptureTargetConstants());
put("Orientation", getOrientationConstants());
@ -95,6 +96,16 @@ public class RCTCameraModule extends ReactContextBaseJavaModule {
});
}
private Map<String, Object> getCaptureQualityConstants() {
return Collections.unmodifiableMap(new HashMap<String, Object>() {
{
put("low", "low");
put("medium", "medium");
put("high", "high");
}
});
}
private Map<String, Object> getCaptureModeConstants() {
return Collections.unmodifiableMap(new HashMap<String, Object>() {
{
@ -156,6 +167,7 @@ public class RCTCameraModule extends ReactContextBaseJavaModule {
promise.reject("No camera found.");
return;
}
RCTCamera.getInstance().setCaptureQuality(options.getInt("type"), options.getString("quality"));
camera.takePicture(null, null, new Camera.PictureCallback() {
@Override
public void onPictureTaken(byte[] data, Camera camera) {