Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
capacitor-camera-preview
Advanced tools
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.
yarn add capacitor-camera-preview
or
npm install capacitor-camera-preview
On Android remember to add the plugin to MainActivity
this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
// Additional plugins you've installed go here
// Ex: add(TotallyAwesomePlugin.class);
add(CameraPreview.class);
}});
Add import 'capacitor-camera-preview'
to you entry script in ionic on app.module.ts
, so capacitor can register the web platform from the plugin
Starts the camera preview instance.
Option | values | descriptions |
---|---|---|
position | front | rear | Show front or rear camera when start the preview |
import { Plugins } from "@capacitor/core"
const { CameraPreview } = Plugins
CameraPreview.start({position: "rear"});
Remember to add the style below on your app's HTML or body element:
html, body, .ion-app, .ion-content {
background-color: transparent;
}
Stops the camera preview instance.
CameraPreview.stop();
Switch between rear and front camera only for android and ios, web is not supported
CameraPreview.flip()
const result = await CameraPreview.capture();
const base64PictureData = result.value;
// do sometime with base64PictureData
pending
FAQs
Camera preview
We found that capacitor-camera-preview demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.