0.1.7 • Published 7 years ago

dubi-camera v0.1.7

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

nat-camera

Installation

weexpack plugin add nat-camera
npm install natjs --save

Usage

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.