Capacitor Camera Preview
Capacitor plugin that allows camera interaction from Javascript and HTML (based on cordova-plugin-camera-preview)
Releases are being kept up to date when appropriate. However, this plugin is under constant development. As such it is recommended to use master to always have the latest fixes & features.
PR's are greatly appreciated. Maintainer(s) wanted.
Installation
yarn install capacitor-camera-preview
or
npm install capacitor-camera-preview
Methods
start(options)
Starts the camera preview instance.
const CameraPreviewCapacitor = Plugins CameraPreviewCapacitorstart;
Remember to add the style below on your app's HTML or body element:
stop()
Stops the camera preview instance.
CameraPreviewCapacitor;
capture()
const result = await CameraPreviewCapacitor;const base64PictureData = resultvalue; // do sometime with base64PictureData
Demo
pending