5.0.1 • Published 9 months ago

capacitor-community-multilens-camerapreview v5.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

capacitor-community-multilens-camerapreview

fork of capacitor community camera preview with support for switchting lenses

Install

npm install capacitor-community-multilens-camerapreview
npx cap sync

API

start(...)

start(options: CameraPreviewOptions) => Promise<{}>
ParamType
optionsCameraPreviewOptions

Returns: Promise<{}>


stop()

stop() => Promise<{}>

Returns: Promise<{}>


capture(...)

capture(options: CameraPreviewPictureOptions) => Promise<{ value: string; }>
ParamType
optionsCameraPreviewPictureOptions

Returns: Promise<{ value: string; }>


captureSample(...)

captureSample(options: CameraSampleOptions) => Promise<{ value: string; }>
ParamType
optionsCameraSampleOptions

Returns: Promise<{ value: string; }>


getSupportedFlashModes()

getSupportedFlashModes() => Promise<{ result: CameraPreviewFlashMode[]; }>

Returns: Promise<{ result: CameraPreviewFlashMode[]; }>


setFlashMode(...)

setFlashMode(options: { flashMode: CameraPreviewFlashMode | string; }) => Promise<void>
ParamType
options{ flashMode: string; }

flip()

flip() => Promise<void>

setOpacity(...)

setOpacity(options: CameraOpacityOptions) => Promise<{}>
ParamType
optionsCameraOpacityOptions

Returns: Promise<{}>


setZoom(...)

setZoom(options: CameraPreviewOptions) => Promise<void>
ParamType
optionsCameraPreviewOptions

getSupportedZoomLevels()

getSupportedZoomLevels() => Promise<{ result: any[]; }>

Returns: Promise<{ result: any[]; }>


Interfaces

CameraPreviewOptions

PropTypeDescription
parentstringParent element to attach the video preview element to (applicable to the web platform only)
classNamestringClass name to add to the video preview element (applicable to the web platform only)
widthnumberThe preview width in pixels, default window.screen.width
heightnumberThe preview height in pixels, default window.screen.height
xnumberThe x origin, default 0 (applicable to the android and ios platforms only)
ynumberThe y origin, default 0 (applicable to the android and ios platforms only)
toBackbooleanBrings your html in front of your preview, default false (applicable to the android only)
paddingBottomnumberThe preview bottom padding in pixes. Useful to keep the appropriate preview sizes when orientation changes (applicable to the android and ios platforms only)
rotateWhenOrientationChangedbooleanRotate preview when orientation changes (applicable to the ios platforms only; default value is true)
positionstringChoose the camera to use 'front' or 'rear', default 'front'
storeToFilebooleanDefaults to false - Capture images to a file and return the file path instead of returning base64 encoded data
disableExifHeaderStrippingbooleanDefaults to false - Android Only - Disable automatic rotation of the image, and let the browser deal with it (keep reading on how to achieve it)
enableHighResolutionbooleanDefaults to false - iOS only - Activate high resolution image capture so that output images are from the highest resolution possible on the device *
disableAudiobooleanDefaults to false - Web only - Disables audio stream to prevent permission requests and output switching
lockAndroidOrientationbooleanAndroid Only - Locks device orientation when camera is showing.
enableOpacitybooleanDefaults to false - Android and Web only. Set if camera preview can change opacity.
enableZoombooleanDefaults to false - Android only. Set if camera preview will support pinch to zoom.
zoomFactoranyoverride defualt lens choice ios String 'ultra','wide','tele' android int example 100, 200 etc

CameraPreviewPictureOptions

PropTypeDescription
heightnumberThe picture height, optional, default 0 (Device default)
widthnumberThe picture width, optional, default 0 (Device default)
qualitynumberThe picture quality, 0 - 100, default 85 on iOS/Android. If left undefined, the web implementation will export a PNG, otherwise a JPEG will be generated

CameraSampleOptions

PropTypeDescription
qualitynumberThe picture quality, 0 - 100, default 85

CameraOpacityOptions

PropTypeDescription
opacitynumberThe percent opacity to set for camera view, default 1

Type Aliases

CameraPosition

'rear' | 'front'

CameraPreviewFlashMode

'off' | 'on' | 'auto' | 'red-eye' | 'torch'

5.0.1

9 months ago

0.0.9-a

11 months ago

0.0.11-a

11 months ago

0.0.9-a1

11 months ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago