Git Product home page Git Product logo

Comments (14)

Virith avatar Virith commented on May 18, 2024 3

while not ideal, this worked for me bower install --save https://github.com/schmich/instascan/releases/download/1.0.0/instascan.min.js . Will install to bower_components/instascan.min/index.js

from instascan.

labregowski avatar labregowski commented on May 18, 2024 1

Hi.
I set up the code in order to use by default the smartphone back camera but it keeps mirroring the QR code. could you please tell me if I am doing anything wrong... ?
this is my script:

 <script type="text/javascript">
      let scanner = new Instascan.Scanner({ video: document.getElementById('preview') });
      scanner.addListener('scan', function (content) {
        console.log(content);
        $("#QRLink").text(content);
        $("#QRLink").attr("href",content);
      });
      let opts = {
        backgroundScan: false,
        mirror: false
      };
      
      Instascan.Camera.getCameras().then(function (cameras) {
        if (cameras.length > 0) {
          scanner.start(cameras[1]);
        } else {
          console.error('No cameras found.');
        }
      }).catch(function (e) {
        console.error(e);
      });
    </script>

I already tried mirror : false and mirror : true but none is working.

Thank in advance,

PS
The https://schmich.github.io/instascan/ camera does not work in Windows phone either,

from instascan.

bjoberg avatar bjoberg commented on May 18, 2024

This would be super helpful!

from instascan.

bchr02 avatar bchr02 commented on May 18, 2024

Any reason why this needs to be on the 2.0.0 milestone? This is relatively easy to accomplish.

from instascan.

Elliffe avatar Elliffe commented on May 18, 2024

Is there any indication on when this is planned?

from instascan.

mikealche avatar mikealche commented on May 18, 2024

It would be amazing to have bower support! :)

from instascan.

 avatar commented on May 18, 2024

Is there a way to have a CND for binding it?

from instascan.

princenaman avatar princenaman commented on May 18, 2024

+1

from instascan.

LuisAlbertoPerezDeLaCruz avatar LuisAlbertoPerezDeLaCruz commented on May 18, 2024

Hello, how can I use it in my ionic 4 project ?
Thanks in advance

from instascan.

iowagrade avatar iowagrade commented on May 18, 2024

I am also trying to integrate into an Ionic project, but when I build I am getting an error in the zxing.js file:

Module not found: Error: can't resolve 'fs' in .../instascan/src.

Is anybody else seeing this error or found a way around it. Thanks.

from instascan.

AbduDevPre avatar AbduDevPre commented on May 18, 2024

Hi.
I set up the code in order to use by default the smartphone back camera but it keeps mirroring the QR code. could you please tell me if I am doing anything wrong... ?
this is my script:

 <script type="text/javascript">
      let scanner = new Instascan.Scanner({ video: document.getElementById('preview') });
      scanner.addListener('scan', function (content) {
        console.log(content);
        $("#QRLink").text(content);
        $("#QRLink").attr("href",content);
      });
      let opts = {
        backgroundScan: false,
        mirror: false
      };
      
      Instascan.Camera.getCameras().then(function (cameras) {
        if (cameras.length > 0) {
          scanner.start(cameras[1]);
        } else {
          console.error('No cameras found.');
        }
      }).catch(function (e) {
        console.error(e);
      });
    </script>

I already tried mirror : false and mirror : true but none is working.

Thank in advance,

PS
The https://schmich.github.io/instascan/ camera does not work in Windows phone either,

try this:

let opts = {
video: document.getElementById('preview'),
backgroundScan: false,
mirror: false
};
let scanner = new Instascan.Scanner(opts);

from instascan.

ronakiihglobal avatar ronakiihglobal commented on May 18, 2024

Module name "instascan" has not been loaded yet for context: _. Use require([])
error faced.

from instascan.

Dvdben avatar Dvdben commented on May 18, 2024

Where can I find the file instascan.min.js
I can't see it anywhere in the package

from instascan.

SmoothiniGitHub avatar SmoothiniGitHub commented on May 18, 2024

Hi could you perhaps upload a code with a start and stop button for the webcam? Unfortunately, to use only scanner.stop() in a new function does not work for me :-(

thanks a lot.

from instascan.

Related Issues (20)

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.