This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (context, trackingId, options) { | |
const history = context.history; | |
const doc = document; | |
const nav = navigator || {}; | |
const storage = localStorage; | |
const encode = encodeURIComponent; | |
const pushState = history.pushState; | |
const typeException = 'exception'; | |
const generateId = () => Math.random().toString(36); | |
const getId = () => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define your HTML/CSS | |
const data = { | |
html: "<div class='box'>Success ✅</div>", | |
css: ".box { border: 4px solid #03B875; padding: 20px; font-family: 'Roboto'; }", | |
font: "Roboto" | |
} | |
// Create an image by sending a POST to the API. | |
const image = await request | |
.post({ url: 'https://api.ocr.vision', form: data}) |