Socket
Socket
Sign inDemoInstall

capacitor3-camera-preview

Package Overview
Dependencies
2
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    capacitor3-camera-preview

Camera preview


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
700 kB
Created
Weekly downloads
 

Readme

Source


Capacitor Camera Preview

capacitor3-camera-preview


CAPACITOR 3


Capacitor plugin that allows camera interaction from Javascript and HTML
(based on cordova-plugin-camera-preview).


Version 2 of this plugin is compatible with Ionic 5+ and Capacitor 3. If your project uses Capacitor 2, please make sure you install version 1 of this plugin.

PR's are greatly appreciated.

-- @arielhernandezmusa and @pbowyer, current maintainers

Installation

yarn add capacitor3-camera-preview

or

npm install capacitor3-camera-preview

Then run

npx cap sync

Extra Android installation steps

Open android/app/src/main/AndroidManifest.xml and above the closing </manifest> tag add this line to request the CAMERA permission:

<uses-permission android:name="android.permission.CAMERA" />

For more help consult the Capacitor docs.

Extra iOS installation steps

You will need to add two permissions to Info.plist. Follow the Capacitor docs and add permissions with the raw keys NSCameraUsageDescription and NSMicrophoneUsageDescription.

Extra Web installation steps

Add import 'capacitor3-camera-preview' to you entry script in ionic on app.module.ts, so capacitor can register the web platform from the plugin

Methods

start(options)

Starts the camera preview instance.

Optionvaluesdescriptions
positionfront | rearShow front or rear camera when start the preview. Defaults to front
widthnumber(optional) The preview width in pixels, default window.screen.width (applicable to the android and ios platforms only)
heightnumber(optional) The preview height in pixels, default window.screen.height (applicable to the android and ios platforms only)
xnumber(optional) The x origin, default 0 (applicable to the android and ios platforms only)
ynumber(optional) The y origin, default 0 (applicable to the android and ios platforms only)
toBackboolean(optional) Brings your html in front of your preview, default false (applicable to the android and ios platforms only)
paddingBottomnumber(optional) The preview bottom padding in pixes. Useful to keep the appropriate preview sizes when orientation changes (applicable to the android and ios platforms only)
rotateWhenOrientationChangedboolean(optional) Rotate preview when orientation changes (applicable to the ios platforms only; default value is true)
storeToFileboolean(optional) Capture images to a file and return back the file path instead of returning base64 encoded data, default false.
disableExifHeaderStrippingboolean(optional) Disable automatic rotation of the image, and let the browser deal with it, default true (applicable to the android and ios platforms only)
disableAudioboolean(optional) Disables audio stream to prevent permission requests, default false. (applicable to web only)
lockAndroidOrientationboolean(optional) Locks device orientation when camera is showing, default false. (applicable to Android only)
enableOpacityboolean(optional) Make the camera preview see-through. Ideal for augmented reality uses. Default false (applicable to Android and web only)
enableZoomboolean(optional) Set if you can pinch to zoom. Default false (applicable to Android only)
import { Plugins } from "@capacitor/core"
const { CameraPreview } = Plugins;
import { CameraPreviewOptions } from 'capacitor3-camera-preview';

const cameraPreviewOptions: CameraPreviewOptions = {
  position: 'rear',
  height: 1920,
  width: 1080
};
CameraPreview.start(cameraPreviewOptions);

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

ion-content {
  --background: transparent;
}

Take into account that this will make transparent all ion-content on application, if you want to show camera preview only in one page, just add a custom class to your ion-content and make it transparent:

.my-custom-camera-preview-content {
  --background: transparent;
}

stop()

Stops the camera preview instance.

CameraPreview.stop();

flip()

Switch between rear and front camera only for android and ios, web is not supported

CameraPreview.flip()

capture(options)

Optionvaluesdescriptions
qualitynumber(optional) The picture quality, 0 - 100, default 85
widthnumber(optional) The picture width, default 0 (Device default)
heightnumber(optional) The picture height, default 0 (Device default)
import { CameraPreviewFlashMode } from 'capacitor3-camera-preview';

const cameraPreviewPictureOptions: CameraPreviewPictureOptions = {
  quality: 50
};

const result = await CameraPreview.capture(cameraPreviewPictureOptions);
const base64PictureData = result.value;

// do sometime with base64PictureData

captureSample(options)

Optionvaluesdescriptions
qualitynumber(optional) The picture quality, 0 - 100, default 85

Captures a sample image from the video stream. Only for Android and iOS, web implementation falls back to capture method. This can be used to perform real-time analysis on the current frame in the video. The argument quality defaults to 85 and specifies the quality/compression value: 0=max compression, 100=max quality.

import { CameraSampleOptions } from 'capacitor3-camera-preview';

const cameraSampleOptions: CameraSampleOptions = {
  quality: 50
};

const result = await CameraPreview.captureSample(cameraSampleOptions);
const base64PictureData = result.value;

// do something with base64PictureData

getSupportedFlashModes()

Get the flash modes supported by the camera device currently started. Returns an array containing supported flash modes. See FLASH_MODE for possible values that can be returned

import { CameraPreviewFlashMode } from 'capacitor3-camera-preview';

const flashModes = await CameraPreview.getSupportedFlashModes();
const supportedFlashModes: CameraPreviewFlashMode[] = flashModes.result;

setFlashMode(options)

Set the flash mode. See FLASH_MODE for details about the possible values for flashMode.

const CameraPreviewFlashMode: CameraPreviewFlashMode = 'torch';

CameraPreview.setFlashMode(cameraPreviewFlashMode);

startRecordVideo(options) ---- ANDROID only

Start capturing video

const cameraPreviewOptions: CameraPreviewOptions = {
  position: 'front',
  width: window.screen.width,
  height: window.screen.height,
};

CameraPreview.startRecordVideo(cameraPreviewOptions);

stopCaptureVideo() ---- ANDROID only

Finish capturing a video. The captured video will be returned as a file path and the video format is .mp4

const resultRecordVideo = await CameraPreview.stopRecordVideo();
this.stopCamera();

setOpacity(options: CameraOpacityOptions): Promise<{}>; ---- ANDROID only

Set the opacity for the camera preview

const myCamera = CameraPreview.start({enableOpacity: true});
myCamera.setOpacity({opacity: 0.4});

Settings

FLASH_MODE

Flash mode settings:

NameTypeDefaultNote
OFFstringoff
ONstringon
AUTOstringauto
RED_EYEstringred-eyeAndroid Only
TORCHstringtorch

Demo

A working example can be found at Demo

To run the demo on your local network and access media devices, a secure context is needed. Add an .env file at the root of the demo folder with HTTPS=true to start react with HTTPS.

Keywords

FAQs

Last updated on 18 Jan 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc