JS Image to Base64

Source: Internet
Author: User
Tags base64 base64 encode

/** * Convert the picture to BASE64 */

function Image2base64 (IMG)

{

var canvas = document.createelement ("canvas");

Canvas.width = Img.width; Canvas.height = Img.height;

var ctx = Canvas.getcontext ("2d");

Ctx.drawimage (IMG, 0, 0, Img.width, img.height);

var dataurl = Canvas.todataurl ("image/png");

return dataurl;

}

/** * Get Picture Base64 encode */

function GetImgBase64 ()

{

var base64=""; var img = new Image ();

< Span class= "hljs-string" >img.src= " Img/test.jpg ";

< Span class= "hljs-string" >img.onload =function () {

< Span class= "hljs-string" > base64 = Image2base64 (IMG);

< Span class= "hljs-string" >&NBSP;}

}

GetImgBase64 ();

JS Image to Base64

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.