1.2.2 • Published 2 days ago

veryfi-lens-wasm v1.2.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 days ago

Veryfi Lens for Web WASM SDK

Veryfi Lens for Web SDK is a framework for your web app to give it document capture superpowers in minutes.

Lens follows a client-server architecture where the server is for validating your client and getting session key and the client side is for displaying and showing Lens components for capturing documents.

There are two ways of using Lens for Web: 1. WebSocket (Only usual receipts, easy to install, slower than WASM) 2. WASM (Usual and Long Receipts, very fast, some devices are not supported)

WebSocket

  1. Import package import VeryfiLens from 'veryfi-lens-wasm' or const lens = require('veryfi-lens-wasm').default inside useEffect for next.js
  2. Add id='veryfi-container' to a div you want lens to appear (it should have full height and hidden overflow)

For usual receipt (Next.Js example)

 const [veryfiLens, setVeryfiLens] = useState<VeryfiLens | null>(null);

  useEffect(() => {
    let intervalRef: number | undefined;
    if (typeof window !== 'undefined') {
      const startLens = async () => {
        const lens = require('../../utils/lens-web-sdk/veryfi-lens').default;
        lens.init(sessionToken);
        setVeryfiLens(lens);
        intervalRef = window.setInterval(() => {
          setSocketStatusColor(lens.getSocketStatusColor());
        }, SOCKET_STATUS_UPDATE_INTERVAL);
      }
      startLens();
    }
    return () => {
      clearInterval(intervalRef);
    };
  }, [sessionToken]);

  const takePhoto = () => {
    if (veryfiLens) {
      veryfiLens.capture(setImage, setIsEditing)
    } else {
      setError('veryfiLens is not initialized');
    }
  };

WASM

You can skip first step and copy wasm folder from package directory manually if you want to do so.

  1. run npm exec veryfi-lens-wasm-setup and provide it with path to directory where they have to be accessible from your project's entry point with relative paths (for next.js public/wasm)
  2. Import package import VeryfiLens from 'veryfi-lens-wasm' or const lens = require('veryfi-lens-wasm').default inside useEffect for next.js
  3. Add id='veryfi-container' to a div you want lens to appear (it should have full height and hidden overflow)

For usual receipt (Next.Js example)

 const [veryfiLens, setVeryfiLens] = useState<{
    setUserAgent: (arg0: string) => void;
    initWasm: (arg0: string) => void;
    startCameraWasm: () => void;
    captureWasm: (
      arg0: React.Dispatch<React.SetStateAction<string>>,
      arg1: React.Dispatch<React.SetStateAction<boolean>>
    ) => void;
  } | null>(null);  

  useEffect(() => {
    const startWasm = async () => {
      if (typeof window !== 'undefined') {
        const lens = require('veryfi-lens-wasm').default;
        lens.setUserAgent(navigator.userAgent);
        await lens.initWasm(sessionToken);
        setVeryfiLens(lens);
      }
    }
    startWasm()
  }, []);

  const takePhoto = () => {
    if (veryfiLens) {
      veryfiLens.captureWasm(setImage, setIsEditing)
    } else {
      console.log('veryfiLens is not initialized')
    }
  };
// setImage is cropped image setter(for example react's useState hook), returns string
// setIsEditing returns `true` if image was succesfully cropped (we use it to change screens)

For Long receipt (Next.Js example) Add container with id="preview-container" to see stitching preview

<div id="preview-container"
      className="absolute top-[100px] left-[10px] md:left-[40px] w-[22vw] md:w-[18vw] h-[70vh] rounded-md z-40 overflow-y-hidden border-[1px] border-solid border-green-300"
      ></div>
 const [veryfiLens, setVeryfiLens] = useState<{
    startStitching(): void;
    setUserAgent: (arg0: string) => void;
    initWasmLong: (arg0: string) => void;
    startCameraWasm: () => void;
    captureLong: (
      arg0: React.Dispatch<React.SetStateAction<string>>,
      arg1: React.Dispatch<React.SetStateAction<boolean>>
    ) => void;
  } | null>(null);  
  const [isStitching, setIsStitching] = useState(false)
 
  useEffect(() => {
    const startWasm = async () => {
      if (typeof window !== 'undefined') {
        const lens = require('veryfi-lens-wasm').default;
        lens.setUserAgent(navigator.userAgent);
        await lens.initWasmLong(sessionToken);
        setVeryfiLens(lens);
      }
    }
    startWasm()
  }, []);

// Start button
const startStitching = () => {
  if (veryfiLens) {
    veryfiLens.startStitching();
    setIsStitching(true);
  } else {
    console.log("veryfiLens is not initialized");
  }
};

// Stop button
const stopStitching = () => {
  if (veryfiLens) {
    veryfiLens.captureLong(setImage, setIsEditing);
  }
};

To use wasm in dev environment, you have to use https and ssl If using Next.js add following to next.config.js:

 async headers() {
    return [
      {
        source: '/(.*)',
        headers: [
          {
            key: 'Cross-Origin-Opener-Policy',
            value: 'same-origin'
          },
          {
            key: 'Cross-Origin-Embedder-Policy',
            value: 'require-corp'
          }
        ]
      }
    ]
  },

webpack: (config) => {
  config.resolve.fallback = { fs: false, path:false, "crypto": false };
  return config;
},

If using Vite and Vue: 1. install serve npm i serve 2. Add following to your vite config

 server: {
    https: { 
    key: fs.readFileSync(path.resolve(__dirname, 'localhost-key.pem')), //path to your cert
    cert: fs.readFileSync(path.resolve(__dirname, 'localhost.pem')),},
    proxy: {},
    hmr: {
      protocol: 'wss',
      timeout: 30000,
    },
    watch: {},
    open: true,
    host: true,
    strictPort: false,
    force: false,
    cors: true,
    headers: {
      'Cross-Origin-Opener-Policy': 'same-origin',
      'Cross-Origin-Embedder-Policy': 'require-corp',
    }
  }
  1. serve -s dist -p 3000

If using Angular:

  1. You can copy files to src directory, then add it to assets in angular.json
"assets": [
  "src/favicon.ico",
  "src/assets",
  "src/wasm"
],
  1. for dev environment you can use node server (server file has to be in the same folder with your index.html)
const http = require("http");
const fs = require("fs").promises;
const host = "localhost";
const port = 3000;
const typeMap = {
  html: "text/html",
  css: "text/css",
  js: "text/javascript",
  wasm: "application/wasm",
};

const requestListener = function (req, res) {
  let url = req.url;
  if (url === "/") url = "/index.html";
  for (const [key, value] of Object.entries(typeMap)) {
    if (url.endsWith(key)) res.setHeader("Content-Type", value);
  }

  fs.readFile(__dirname + url)
    .then((contents) => {
      res.setHeader("Cross-Origin-Opener-Policy", "same-origin");
      res.setHeader("Cross-Origin-Embedder-Policy", "require-corp");
      res.writeHead(200);
      res.end(contents);
    })
    .catch((err) => {
      console.log("error: ", url);
      console.log("Error", err.stack);
      console.log("Error", err.name);
      console.log("Error", err.message);
      res.writeHead(500);
      return;
    });
};

const server = http.createServer(requestListener);
server.listen(port, host, () => {
  console.log(`Server is running on http://${host}:${port}`);
});
  1. run it with node server.js 2.npx local-ssl-proxy --key localhost-key.pem --cert localhost.pem --source 3001 --target 3000 (You will need local certificate, possible to make with mkcert)
  2. Go to https://localhost:3001

For production build (any framework) or if you prefer using build instead of dev environment wasm directory should be in your dist directory (near your built index.html)

'Cross-Origin-Opener-Policy', 'same-origin';
'Cross-Origin-Embedder-Policy', 'require-corp';
1.2.2

2 days ago

1.2.1

17 days ago

1.2.0

20 days ago

1.2.0-beta.2

29 days ago

1.2.0-beta.1

1 month ago

1.1.18

2 months ago

1.1.17

2 months ago

1.1.16

2 months ago

1.1.15

2 months ago

1.1.14

2 months ago

1.1.12

3 months ago

1.1.13

3 months ago

1.1.9

4 months ago

1.1.8

5 months ago

1.1.11

4 months ago

1.1.10

4 months ago

1.1.7

5 months ago

1.1.6

6 months ago

1.1.5

7 months ago

1.1.4

7 months ago

1.1.3

7 months ago

1.1.2

8 months ago

1.1.1

9 months ago

1.1.0

9 months ago

1.0.9

9 months ago

1.0.8

9 months ago

1.0.7

9 months ago

1.0.6

9 months ago

1.0.5

9 months ago

1.0.4

9 months ago

1.0.3

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago