We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4253a2d commit 8935023Copy full SHA for 8935023
src/pages/miscellaneous/get-image/README.md
@@ -0,0 +1,7 @@
1
+This example gives the option to get a picture from either a camera or picture gallery.
2
+
3
+Docs: http://ionicframework.com/docs/v2/native/camera/
4
5
+You have to install the plugin with:
6
+```sh
7
+$ ionic plugin add cordova-plugin-camera --save
src/providers/util/camera.provider.ts
@@ -12,7 +12,7 @@ export class CameraProvider {
12
}
13
14
getPictureFromPhotoLibrary() {
15
- return this.getImage(Camera.PictureSourceType.PHOTOLIBRARY, true);
+ return this.getImage(Camera.PictureSourceType.PHOTOLIBRARY);
16
17
18
// This method takes optional parameters to make it more customizable
0 commit comments