veryfi-lens-wasm
v2.0.1
Published
Lens For Web SDK with WASM
Downloads
965
Readme
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:
- WebSocket (Only usual receipts, easy to install, slower than WASM)
- WASM (Usual and Long Receipts, very fast, some devices are not supported)
WebSocket
- Import package
import VeryfiLens from 'veryfi-lens-wasm'
orconst lens = require('veryfi-lens-wasm').default
insideuseEffect
for next.js - 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.
- 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.jspublic/wasm
) - Import package
import VeryfiLens from 'veryfi-lens-wasm'
orconst lens = require('veryfi-lens-wasm').default
insideuseEffect
for next.js - 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:
- install serve
npm i serve
- 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',
}
}
serve -s dist -p 3000
If using Angular:
- You can copy files to
src
directory, then add it to assets inangular.json
"assets": [
"src/favicon.ico",
"src/assets",
"src/wasm"
],
- 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}`);
});
- 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 withmkcert
) - 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';