dubi-camera
v0.1.7
Published
Nat.js module: Camera
Maintainers
Readme
nat-camera
Installation
weexpack plugin add nat-cameranpm install natjs --saveUsage
Use in weex file (.we)
<script>
import 'Nat' from 'natjs'
// take a photo
Nat.camera.captureImage((err, ret) => {
console.log('Path: ', ret.path)
})
// record a video
Nat.camera.captureVideo((err, ret) => {
console.log('Path: ', ret.path)
})
</script>See the Nat Documentation for more details.
