From a1ee03a71ad462d1970fba40901eb3514c5297f1 Mon Sep 17 00:00:00 2001 From: Stoyan Stratev Date: Thu, 22 Mar 2018 11:26:15 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2774c12..44ab6eb 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,9 @@ npm install nativescript-camera --save | saveToGallery | true | Defines if camera picture should be copied to photo Gallery (Android) or Photos (iOS) | | cameraFacing | rear | The initial camera facing. Use 'front' for selfies. | + +> Note: The `saveToGallery` option might have unexpected behavior on Android! Some vendor camera apps (e.g. LG) will save all captured images to the gallery regardless of what the value of `saveToGallery` is. This behavior cannot be controlled by the camera plugin and if you must exclude the captured image from the photo gallery, you will need to get a local storage read/write permission and write custom code to find the gallery location and delete the new image from there. + ## Usage ### Requesting permissions @@ -161,4 +164,4 @@ We love PRs! Check out the [contributing guidelines](CONTRIBUTING.md). If you wa ## Get Help Please, use [github issues](https://github.com/NativeScript/nativescript-camera/issues) strictly for [reporting bugs](CONTRIBUTING.md#reporting-bugs) or [requesting features](CONTRIBUTING.md#requesting-new-features). For general questions and support, check out the [NativeScript community forum](https://discourse.nativescript.org/) or ask our experts in [NativeScript community Slack channel](http://developer.telerik.com/wp-login.php?action=slack-invitation). -![](https://ga-beacon.appspot.com/UA-111455-24/nativescript/nativescript-camera?pixel) \ No newline at end of file +![](https://ga-beacon.appspot.com/UA-111455-24/nativescript/nativescript-camera?pixel) From 2055c1881c3960ff16095bbc05cbd681eca5232d Mon Sep 17 00:00:00 2001 From: Stoyan Stratev Date: Thu, 22 Mar 2018 11:32:32 +0200 Subject: [PATCH 2/2] Delete README.md --- src/README.md | 134 -------------------------------------------------- 1 file changed, 134 deletions(-) delete mode 100644 src/README.md diff --git a/src/README.md b/src/README.md deleted file mode 100644 index a6f6db5..0000000 --- a/src/README.md +++ /dev/null @@ -1,134 +0,0 @@ -Welcome to the `nativescript-camera` plugin for NativeScript framework - -# Prerequisites - -- installed [NativeScript-CLI](https://github.com/NativeScript/nativescript-cli) - - -# Working with the camera plugin - -## Overview - -Almost every mobile application needs the option to capture, save and share images. -The NativeScript camera plugin was designed for the first two parts of the job (taking a picture and optionally saving to device storage). - -### Installation - -Navigate to project folder and run NativeScript-CLI command -``` -tns plugin add nativescript-camera -``` - -Plugin could be added as a standard npm dependency running command -``` -npm install nativescript-camera --save -``` - -> Note: the `--save` flag will add the plugin as dependency in your package.json file - -### Requesting permissions - -Newer API levels of Android and iOS versions are requiring explicit permissions in order the application -to have access to the camera and to be able to save photos to the device. Once the user has granted permissions the camera module can be used. - -``` -camera.requestPermissions(); -``` - -> Note: Older versions won't be affected by the usage of the requestPermissions method. - -### Using the camera module to take a picture - -Using the camera module is relatively simple. -However, there are some points that need a little bit more explanation. - -In order to use the camera module, just require it, as shown in Example 1: - -> Example 1: Require camera module in the application -``` JavaScript -var camera = require("nativescript-camera"); -``` -``` TypeScript -import * as camera from "nativescript-camera"; -``` - -Then you are ready to use it: -> Example 2: How to take a picture and to recieve image asset -``` JavaScript -var imageModule = require("ui/image"); -camera.takePicture() - .then(function (imageAsset) { - console.log("Result is an image asset instance"); - var image = new imageModule.Image(); - image.src = imageAsset; - }).catch(function (err) { - console.log("Error -> " + err.message); - }); -``` -``` TypeScript -import { Image } from "ui/image"; -camera.takePicture({). - then((imageAsset) => { - console.log("Result is an image asset instance"); - var image = new Image(); - image.src = imageAsset; - }).catch((err) => { - console.log("Error -> " + err.message); - }); -``` - -The code in __Example 2__ will start the native platform camera application. After taking the picture and tapping the button `Save` (Android) or `use image` (iOS), the promise will resolve the `then` part and image asset will be set as `src` of the `ui/image` control. - -### Using the options to take memory efficient picture - -__Example 2__ shows how to take a picture using the NativeScript camera module. However, it takes a huge image (even mid-level devices has a 5MP camera, which results in a image 2580x2048, which in bitmap means approximately 15 MB). In many cases you don't need such a huge picture to show an image with 100x100 size, so taking a big picture is just a waste of memory. The camera takePicture() method accepts an optional parameter that could help in that case. With that optional parameter, you could set some properties like: - -* __width__: The desired width of the picture (in device independent pixels). -* __height__: The desired height of the picture (in device independent pixels). -* __keepAspectRatio__: A boolean parameter that indicates if the aspect ratio should be kept. -* __saveToGallery__: A boolean parameter that indicates if the taken photo will be saved in "Photos" for Android and in "Camera Roll" in iOS -* __cameraFacing__: Start with either the "front" or "rear" (default) camera of the device. The current implementation doesn't work on all Android devices, in which case it falls back to the default behavior. - -What does `device independent pixels` mean? The NativeScript layout mechanism uses device-independent pixels when measuring UI controls. This allows you to declare one layout and this layout will look similar to all devices (no matter the device's display resolution). In order to get a proper image quality for high resolution devices (like iPhone retina and Android Full HD), camera will return an image with bigger dimensions. For example, if we request an image that is 100x100, on iPhone 6 the actual image will be 200x200 (since its display density factor is 2 -> 100*2x100*2). -Setting the `keepAspectRatio` property could result in a different than requested width or height. The camera will return an image with the correct aspect ratio but generally only one (from width and height) will be the same as requested; the other value will be calculated in order to preserve the aspect of the original image. - -__Example 3__ shows how to use the options parameter: -> Example 3: How to setup `width`, `height`, `keepAspectRatio` and `saveToGallery` properties for the camera module - -``` JavaScript -var imageModule = require("ui/image"); - -var options = { width: 300, height: 300, keepAspectRatio: false, saveToGallery: true }; -camera.takePicture(options) - .then(function (imageAsset) { - console.log("Size: " + imageAsset.options.width + "x" + imageAsset.options.height); - console.log("keepAspectRatio: " + imageAsset.options.keepAspectRatio); - console.log("Photo saved in Photos/Gallery for Android or in Camera Roll for iOS"); - }).catch(function (err) { - console.log("Error -> " + err.message); - }); -``` -``` TypeScript -import { Image } from "ui/image"; - -var options = { width: 300, height: 300, keepAspectRatio: false, saveToGallery: true }; -camera.takePicture(options). - then((imageAsset) => { - console.log("Size: " + imageAsset.options.width + "x" + imageAsset.options.height); - console.log("keepAspectRatio: " + imageAsset.options.keepAspectRatio); - console.log("Photo saved in Photos/Gallery for Android or in Camera Roll for iOS"); - }).catch((err) => { - console.log("Error -> " + err.message); - }); -``` - -### Check if the device has available camera - -The first thing that the developers should check if the device has an available camera. -The method isAvaiable will return true if the camera hardware is ready to use or false if otherwise. - -``` -var isAvailable = camera.isAvailable(); -``` - -> Note: This method will return false when used in iOS simulator (as the simulator does not have camera hardware)