diff --git a/src/wp/Camera.cs b/src/wp/Camera.cs index f4df7fc..264a205 100644 --- a/src/wp/Camera.cs +++ b/src/wp/Camera.cs @@ -46,6 +46,11 @@ namespace WPCordovaClassLib.Cordova.Commands /// private const int FILE_URI = 1; + /// + /// Return native uri + /// + private const int NATIVE_URI = 2; + /// /// Choose image from picture library /// @@ -214,10 +219,17 @@ namespace WPCordovaClassLib.Cordova.Commands return; } - if(cameraOptions.DestinationType != Camera.FILE_URI && cameraOptions.DestinationType != Camera.DATA_URL ) + // Api supports FILE_URI, DATA_URL, NATIVE_URI destination types. + // Treat all other destination types as an error. + switch (cameraOptions.DestinationType) { - DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, "Incorrect option: destinationType")); - return; + case Camera.FILE_URI: + case Camera.DATA_URL: + case Camera.NATIVE_URI: + break; + default: + DispatchCommandResult(new PluginResult(PluginResult.Status.ERROR, "Incorrect option: destinationType")); + return; } ChooserBase chooserTask = null; @@ -304,7 +316,7 @@ namespace WPCordovaClassLib.Cordova.Commands { imagePathOrContent = GetImageContent(rotImageStream); } - else // FILE_URL + else // FILE_URL or NATIVE_URI (both use the same resultant uri format) { imagePathOrContent = SaveImageToLocalStorage(rotImageStream, Path.GetFileName(e.OriginalFileName)); } @@ -316,7 +328,7 @@ namespace WPCordovaClassLib.Cordova.Commands { imagePathOrContent = GetImageContent(e.ChosenPhoto); } - else // FILE_URL + else // FILE_URL or NATIVE_URI (both use the same resultant uri format) { imagePathOrContent = SaveImageToLocalStorage(e.ChosenPhoto, Path.GetFileName(e.OriginalFileName)); }