Giter VIP home page Giter VIP logo

react-cam's Introduction

react-cam

npm

HTML5 Web/Mobile camera for ReactJS

Installation

NPM

npm install react-cam

Yarn

yarn add react-cam

How to use it?

props

Prop name Optional Default Description
showFocus Yes false show/hide the blue focus box, basically useless...
front Yes false true: front camera, false: rear camera
capture No None A function to handle base64 string image
width No 480 Camera pixel width, percentage or absolute value
height No 320 Camera pixel height, percentage or absolute value
focusWidth Yes 80% Camera focus box width, percentage or absolute value
focusHeight Yes 50% Camera focus box height, percentage or absolute value
btnColor Yes '#2acef5' Set color of the capture button
onError No Handles camera error, the error object will be passed as the function argument

example

import React, { Fragment, useRef } from 'react';
import ReactDOM from 'react-dom';
import { Camera } from './lib';

function capture(imgSrc) {
  console.log(imgSrc);
}

const App = () => {
  const cam = useRef(null);
  return (
    <Fragment>
      <Camera
        showFocus={true}
        front={false}
        capture={capture}
        ref={cam}
        width="80%"
        height="auto"
        focusWidth="80%"
        focusHeight="60%"
        btnColor="white"
      />
      <button onClick={img => cam.current.capture(img)}>Take image</button>
    </Fragment>
  );
};
ReactDOM.render(<App />, document.getElementById('root'));

react-cam's People

Contributors

ccwukong avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.