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 'react-cam';

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

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

react-cam's Issues

Not capturing the whole area

Thanks for the nice library, I came across that take pic does not capture the whole viewing area ?
Any idea why is that

It's not compatible with nextJS application for one reason

For this reasons https://nextjs.org/docs/messages/css-npm

NextJS not allow dependencies import css from node_modules, some ways to fix are suggested. Can you update this dependency and publish a compiled version?

Reach out to the maintainer and ask for them to publish a compiled version of their dependency.

The error exactly is this:

./node_modules/react-cam/lib/lib/style.css
Global CSS cannot be imported from within node_modules.
Read more: https://nextjs.org/docs/messages/css-npm
Location: node_modules/react-cam/lib/lib/reactCam.js

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.