Skip to content

Instantly share code, notes, and snippets.

@pete-otaqui
Created March 8, 2019 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pete-otaqui/eb31b743201909bc6731f4f850cc0213 to your computer and use it in GitHub Desktop.
Save pete-otaqui/eb31b743201909bc6731f4f850cc0213 to your computer and use it in GitHub Desktop.
Convert Image to Base 64 WebDriver JS and Node style
// This runs in a browser,
// it's usable with WebDriver as an injected script
function convertImagetoBase64(selector) {
const image = document.querySelector(selector);
const canvas = document.createElement("canvas");
const context = canvas.getContext("2d");
const { width, height } = image;
canvas.width = width;
canvas.height = height;
context.drawImage(image, 0, 0, width, height);
const base64String = canvas.toDataURL();
return base64String;
}
// This runs in Node
const fs = require("fs");
function saveBase64URLAsFile(base64URL, filename) {
return new Promise((resolve, reject) => {
const base64Data = dataURL.replace(/^data:image\/png;base64,/, "");
const binaryData = Buffer.from(base64Data, "base64").toString("binary");
fs.writeFile(filename, binaryData, "binary", err => {
if (err) {
reject(err);
} else {
resolve();
}
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment