Socket
Socket
Sign inDemoInstall

camera-component

Package Overview
Dependencies
4
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    camera-component

Vainilla JavaScript Camera Component


Version published
Weekly downloads
239
decreased by-14.34%
Maintainers
1
Install size
60.5 MB
Created
Weekly downloads
 

Readme

Source

JavaScript Camera Component

A Javascript camera component, made with Stencil.js. This is a web component and as such, it does not depend on any framework.

Anyhow it works well with Angular, React, Vue, Stencil, JQuery, any other unimaginable framework or none at all.

Quick example

See example in examples folder

<script type="module" src="https://unpkg.com/camera-component/dist/camera-component/camera-component.esm.js"></script>
<script nomodule src="https://unpkg.com/camera-component/dist/camera-component/camera-component.js"></script>

<camera-component id="cam" show-preview="true"></camera-component>
<button onclick="cam.start()">Open the camera in embedded mode</button>
<button onclick="cam.start(1)">Open the camera in a modal</button>
<script>
    const cam = document.getElementById('cam');
    cam.addEventListener('picture', (e) => console.log('Picture in base 64:', e.detail));
    cam.addEventListener('backButton', () => console.log('backButton'));
    cam.addEventListener('webcamStop', () => console.log('webcamStop'));
</script>

Install

JS without any framework

Include the following scripts on the html page:

<script type="module" src="https://unpkg.com/camera-component/dist/camera-component/camera-component.esm.js"></script>
<script nomodule src="https://unpkg.com/camera-component/dist/camera-component/camera-component.js"></script>

Frameworks

Install using npm

npm install camera-component --save

or yarn

yarn add camera-component

React

// index.js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import registerServiceWorker from './registerServiceWorker';

import { applyPolyfills, defineCustomElements } from 'camera-component/loader';

ReactDOM.render(<App />, document.getElementById('root'));
registerServiceWorker();

applyPolyfills().then(() => {
  defineCustomElements(window);
});
// App.jsx
import React from 'react';
import 'camera-component';

const App = () => {
    return <camera-component />
}

export default App;

Angular

// app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';

@NgModule({
  declarations: [AppComponent],
  imports: [
    BrowserModule,
    FormsModule,
  ],
  bootstrap: [AppComponent],
  schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
export class AppModule {}
// main.ts
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';

import { applyPolyfills, defineCustomElements } from 'camera-component/loader';

if (environment.production) {
  enableProdMode();
}

platformBrowserDynamic().bootstrapModule(AppModule)
  .catch(err => console.log(err));
applyPolyfills().then(() => {
  defineCustomElements()
})
// app.component.ts
import {Component, ElementRef, ViewChild} from '@angular/core';

import 'camera-component';

@Component({
    selector: 'app-home',
    template: `<camera-component #cam></camera-component>`,
    styleUrls: ['./home.component.scss'],
})
export class AppComponent {

    @ViewChild('cam') camComponent: ElementRef<HTMLCamComponentElement>;

    async onAction() {
        await this.camComponent.nativeElement.camComponentMethod();
    }
}
// app.component.html
<camera-component />

Stencil

import { Component } from '@stencil/core';
import 'camera-component';

@Component({
  tag: 'camera',
  styleUrl: 'camera.scss'
})
export class Camera {

render() {
    return (
      <camera-component />
    );
  }
}

Quick start: Camera component

This is the camera component, ready to start the cam. It works in two different modes: embedded or in a modal.

<camera-component id="cam" show-preview="true"></camera-component>
<button onclick="cam.start()">Open the camera in embedded mode</button>
<button onclick="cam.start(1)">Open the camera in a modal</button>
<script>
    const cam = document.getElementById('cam');
    cam.addEventListener('picture', (e) => console.log('Picture in base 64:', e.detail));
    cam.addEventListener('backButton', () => console.log('backButton'));
    cam.addEventListener('webcamStop', () => console.log('webcamStop'));
</script>

See documentation on Github or complete example

Quick start: Camera controller

This is the low level camera controller.

<camera-controller id="cam"></camera-controller>
<button onclick="cam.flipCam()">Flip</button>
<button onclick="cam.takePicture()">Take picture</button>
<button onclick="cam.stopWebcam()">Stop cam</button>
<script>
    const cam = document.getElementById('cam');
    cam.addEventListener('picture', (e) => console.log('Picture in base 64:', e.detail.snapshot));
    cam.addEventListener('backButton', () => console.log('backButton'));
    cam.addEventListener('webcamStop', () => console.log('webcamStop'));
</script>

See documentation on Github or complete example

API

API camera-component

Overview

Camera component, this is the main component.

Properties

PropertyAttributeDescriptionTypeDefault
allowGalleryallow-galleryIf true, allows taking picture from gallerybooleantrue
backButtonStopCamback-button-stop-camIf true, stops cam when back button is pushedbooleantrue
orientationorientationCamera selected - user: front camera - environtment: back cameraCamOrientation.environment | CamOrientation.userCamOrientation.environment
showPreviewshow-previewIf true, shows image preview when snapbooleantrue

Events

EventDescriptionType
backButtonEvent emitted when back button is pushedCustomEvent<void>
pictureEvent emitted when snapCustomEvent<any>
webcamStopEvent emitted when cam stopCustomEvent<any>

Methods

start(camMode?: CamMode) => Promise<void>

Method to open the camera

Returns

Type: Promise<void>

void

stop() => Promise<void>

Method to stop the camera

Returns

Type: Promise<void>

void

Dependencies

Depends on

Graph

graph TD;
  camera-component --> camera-controller
  camera-controller --> ion-footer
  camera-controller --> ion-button
  camera-controller --> ion-icon
  ion-button --> ion-ripple-effect
  style camera-component fill:#f9f,stroke:#333,stroke-width:4px

Built with StencilJS

API camera-controller

Overview

Camera controller component

Properties

PropertyAttributeDescriptionTypeDefault
allowGalleryallow-galleryIf true, allows taking picture from gallerybooleantrue
backButtonStopCamback-button-stop-camIf true, stops cam when back button is pushedbooleantrue
camModecam-modeCamera modeCamMode.embedded | CamMode.modalundefined
heightheightVideo element heightnumberundefined
orientationorientationSelected camera - user: front camera - environtment: back cameraCamOrientation.environment | CamOrientation.userCamOrientation.environment
showPreviewshow-previewIf true, shows image preview when snapbooleantrue
widthwidthVideo element widthnumberundefined

Events

EventDescriptionType
backButtonEvent emitted when back button is pushedCustomEvent<void>
pictureEvent emitted when snapCustomEvent<any>
webcamStopEvent emitted when cam is stopedCustomEvent<any>

Methods

flipCam() => Promise<void>

Switch between front and back cam

Returns

Type: Promise<void>

void

resize(width: number, height: number) => Promise<void>

Change the video element size

Returns

Type: Promise<void>

void

stopWebcam() => Promise<void>

Stop the webcam Emits webcamStop event

Returns

Type: Promise<void>

void

takePicture() => Promise<void>

Captures the picture Emits picture event

Returns

Type: Promise<void>

void

Dependencies

Used by

Depends on

  • ion-footer
  • ion-button
  • ion-icon

Graph

graph TD;
  camera-controller --> ion-footer
  camera-controller --> ion-button
  camera-controller --> ion-icon
  ion-button --> ion-ripple-effect
  camera-component --> camera-controller
  style camera-controller fill:#f9f,stroke:#333,stroke-width:4px

Built with StencilJS

Roadmap

  • Share image: Twitter, Facebook, Instagram, Email, Linkedin
  • Rotate image
  • Scale image
  • Button effects
  • Image effects (sepia, black/white, ...)
  • Video recorder
  • Allow multiple image formats (png, jpeg, quality, base64, blob, ...)

Keywords

FAQs

Last updated on 20 Dec 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