How to Convert Image to Base64 Data URI

How to convert an image to a base64 data URI with Google Apps Script or the HTML5 Canvas API.

In Spreadsheet Paintings, you upload a photograph from the local disk and it transforms the picture into pixel art. Internally, the JavaScript resizes the image using the HTML5 Canvas API and then uploads the base64-encoded representation of the canvas data to the Google Script using the HTMLService where the pixels are converted into RGB colors.

Image to Base64

Image to Base64 with Google Apps Script

const convertImageToDataUri = () => {
  const imageUrl = 'https://i.imgur.com/6rl9Atu.png';
  const blob = UrlFetchApp.fetch(imageUrl).getBlob();
  const base64String = Utilities.base64Encode(blob.getBytes());
  return `data:image/png;base64,${base64String}`;
};

Base64 Image with HTML5 Canvas API

<input type="file" id="image" />
<canvas></canvas>
<script>
  $('document').ready(function () {
    $('input[type=file]').on('change', function (f) {
      var file = f.target.files[0];
      if (file) {
        var reader = new FileReader();
        var image = new Image();
        reader.onload = function (e) {
          image.src = e.target.result;
          var canvas = $('canvas')[0];
          canvas.height = image.height;
          canvas.width = image.width;
          var ctx = canvas.getContext('2d');
          ctx.drawImage(image, 0, 0);
          var dataURL = canvas.toDataURL('image/png');
          console.log(dataURL);
        };
        reader.readAsDataURL(file);
      }
    });
  });
</script>

Embed Base64 Data URI in HTML

Take the base64 string and add it the the src attribute of an img tag.

<img src="data:image/png;base64,iVBORw0KGg....." />

Amit Agarwal is a web geek, solo entrepreneur and loves making things on the Internet. Google recently awarded him the Google Developer Expert and Google Cloud Champion title for his work on Google Workspace and Google Apps Script.

Awards & Recognition

Google Developer Expert

Google Developer Expert

Google awarded us the Developer Expert title recogizing our work in Workspace

ProductHunt Golden Kitty

ProductHunt Golden Kitty

Our Gmail tool won the Lifehack of the Year award at ProductHunt Golden Kitty Awards

Microsoft MVP Alumni

Microsoft MVP Alumni

Microsoft awarded us the Most Valuable Professional title for 5 years in a row

Google Cloud Champion

Google Cloud Champion

Google awarded us the Champion Innovator award for technical expertise

Want to stay up to date?
Sign up for our email newsletter.

We will never send any spam emails. Promise 🫶🏻