2.0.22 • Published 2 years ago

@capacitor-mobi/camera-preview v2.0.22

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Capacitor Camera Preview Of Hanuman

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

Installation

npm install @capacitor-mobi/camera-preview

Then run

npx cap update

Features

-Support create a thumbnail image together with the original image.

-Use CoreMotion to detect the orientation when use lock to portrait mode.

-Play audio like a native camera when clicking on the take picture button.

-Tap to focus.

-Pinch to zoom.

-Support zoom out for the rear camera. ("builtInDualWideCamera": one ultra wide and one wide angle)

-Listen on volume button to take image.

-Show flash screen animation when taking picture.

-Support the camera frame rotate to landscape left or landscape right.

Methods

prepare(options)

Prepare the camera preview instance. (Not showing camera preview on UI yet)

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)
qualitynumber(optional) The picture quality, 0 - 100, default 85
thumbnailWidthnumber(optional) The thumbnail picture width, default 0 (don't use thumbnail)
import { Plugins } from "@capacitor/core";
const { CameraPreview } = Plugins;
import { CameraPreviewOptions } from "@capacitor-community/camera-preview";

const cameraPreviewOptions: CameraPreviewOptions = {
  position: "rear",
  height: 1920,
  width: 1080,
  quality: 50,
  thumbnailWidth: 200,
  
  // Support camera frame rotate to landscape left or landscape right
  primaryX: cameraHeaderHeight,
  secondaryX: cameraFooterHeight
};
CameraPreview.prepare(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 cutom class to your ion-content and make it transparent:

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

start()

Show the camera preview after the preparation is done.

CameraPreview.start();

hide()

Hide the camera preview but not destroy it. (Useful when your want to show it immediately)

CameraPreview.hide();

show()

Show the camera preview immediately.

CameraPreview.show();

stop()

Stops the camera preview instance. (After it stops, we need to call the "prepare" and "start" as the beginning)

CameraPreview.stop();

flip()

Switch between rear and front camera

CameraPreview.flip();

capture()

import { CameraPreviewFlashMode } from "@capacitor-community/camera-preview";

const result = await CameraPreview.capture();
// If "storeToFile = true", the result.image will be the file path.
// If "storeToFile = false", the result.image will be the Base64 string.
const imagePath = result.image;
const thumbnailPath = result.thumbnailImage as string;

listenOnVolumeButton()

Listen on volume button (up or down)

CameraPreview.listenOnVolumeButton(async (res: VolumeButtonResult | null) => {
	if (!res || !res.volumeButtonChanged) {
		return;
	}
	// Call your capture function
});

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 "@capacitor-community/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);

Settings

FLASH_MODE

Flash mode settings:

NameTypeDefaultNote
OFFstringoff
ONstringon
AUTOstringauto
RED_EYEstringred-eyeAndroid Only
TORCHstringtorch
2.0.22

2 years ago

2.0.20

3 years ago

2.0.21

2 years ago

2.0.19

3 years ago

2.0.17

3 years ago

2.0.18

3 years ago

2.0.15

3 years ago

2.0.16

3 years ago

2.0.13

3 years ago

2.0.14

3 years ago

2.0.12

3 years ago

2.0.11

3 years ago

2.0.9

3 years ago

2.0.10

3 years ago

2.0.7

3 years ago

2.0.6

3 years ago

2.0.8

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago