Skip to content

Instantly share code, notes, and snippets.

View uesleisuptitz's full-sized avatar
🚀
Dale!

Uéslei Suptitz uesleisuptitz

🚀
Dale!
View GitHub Profile
@cawa87
cawa87 / base64.js
Last active August 26, 2021 07:36
JavaScript Convert an image to a base64 url
/**
* Convert an image
* to a base64 url
* @param {String} url
* @param {Function} callback
* @param {String} [outputFormat=image/png]
*/
function convertImgToBase64URL(url, callback, outputFormat){
var img = new Image();
img.crossOrigin = 'Anonymous';