Skip to content

Instantly share code, notes, and snippets.

@blackmiaool
Last active April 18, 2019 09:02
Show Gist options
  • Save blackmiaool/8469eb8a3600aff5b92a28ca1e670f02 to your computer and use it in GitHub Desktop.
Save blackmiaool/8469eb8a3600aff5b92a28ca1e670f02 to your computer and use it in GitHub Desktop.
compress image
function compress(canvasDom, size){
let ratio = 1;
let dataurl;
do {
dataurl = canvasDom.toDataURL("image/jpeg", ratio);
ratio -= 0.1;
if (ratio < 0.3) {
return null;
}
} while (dataurl.length > size/3*4);
return dataurl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment