danielleushuis-capacitor-camera-preview
TypeScript icon, indicating that this package has built-in type declarations

0.0.1-beta.24 • Public • Published

Capacitor Camera Preview

NPM Downloads Build Status

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.

import { Plugins } from "@capacitor/core"
 
const { CameraPreviewCapacitor } = Plugins
 
CameraPreviewCapacitor.start();

Remember to add the style below on your app's HTML or body element:

htmlbody.ion-app.ion-content {
  background-color: transparent;
}

stop()

Stops the camera preview instance.

CameraPreviewCapacitor.stop();

capture()

const result = await CameraPreviewCapacitor.capture();
const base64PictureData = result.value;
 
// do sometime with base64PictureData
 

Demo

pending

/danielleushuis-capacitor-camera-preview/

    Package Sidebar

    Install

    npm i danielleushuis-capacitor-camera-preview

    Weekly Downloads

    21

    Version

    0.0.1-beta.24

    License

    MIT

    Unpacked Size

    1.52 MB

    Total Files

    72

    Last publish

    Collaborators

    • danielsmilo