Skip to content

Instantly share code, notes, and snippets.

View Bravodin's full-sized avatar

Bravodin

  • Brazil - São Paulo
View GitHub Profile
@Bravodin
Bravodin / convert-image-to-base64.js
Created November 18, 2016 19:56 — forked from HereChen/convert-image-to-base64.js
convert image to base64
/**
* version1: convert online image
* @param {String} url
* @param {Function} callback
* @param {String} [outputFormat='image/png']
* @author HaNdTriX
* @example
convertImgToBase64('http://goo.gl/AOxHAL', function(base64Img){
console.log('IMAGE:',base64Img);
})