Add it to your Meteor app with meteor add okland:camera-ui. This package is mobile UI expanded version of mdg:camera package.
There are only four methods in this package :
Prompt the user to take a photo with their device and get the picture as a Data URI in JPEG format. On mobile show actionsheet that asks the user whether he wants to take a picture or use image gallery. This function expand the Meteor.Camera.getPicture so it allows to specify different options per ios, android or browser.
options is an optional argument that is an Object with the following possible keys:
-
widthAn integer that specifies the minimum width of the returned photo. -
heightAn integer that specifies the minimum height of the returned photo. -
qualityA number from 0 to 100 specifying the desired quality of JPEG encoding. -
iosOptionsAn Object - Special options only for ios {width:Int, height:Int, quality: ...} -
androidOptionsAn Object - Special options only for android {width:Int, height:Int, quality: ...} -
browserOptionsAn Object - Special options only for browser {width:Int, height:Int, quality: ...} -
buttonTextsAn Object - Allow to override the actionsheet button texts {cancel:String, takeImage:String, imageLibrary:String}
callback is a required argument that is a function that takes two arguments:
errorA Meteor.Error with a platform-specific error message.dataA base64-encoded data URI for the image taken by the camera. This parameter can be used directly in the 'src' attribute of an image tag.
Just to regular take photo function of MeteorCamera. Prompt the user to take a photo with their device and get the picture as a Data URI in JPEG format.
options is an optional argument that is an Object with the following possible keys:
widthAn integer that specifies the minimum width of the returned photo.heightAn integer that specifies the minimum height of the returned photo.qualityA number from 0 to 100 specifying the desired quality of JPEG encoding.
callback is a required argument that is a function that takes two arguments:
errorA Meteor.Error with a platform-specific error message.dataA base64-encoded data URI for the image taken by the camera. This parameter can be used directly in the 'src' attribute of an image tag.
An helper function to convert the dataURI of the image received from camera to blob with specific contentType. Commonly used on cordova apps in order to upload the image that was taken.
An helper function to convert base64 data to blob with specific contentType. Commonly used on cordova apps in order to upload the image that was taken.
Please note : If you take the a base64-encoded data URI for the image taken by the camera, you should give this function only the part that follows the ','