Giter VIP home page Giter VIP logo

imageblobdemo's Introduction

Storing the image Blob in indexed db

This is a demo on storing the images as Blob object in indexed DB using JsStore.

It would be very easy to understand if you are familiar with Jquery and JsStore. In case you need, you can go through Jquery Tutorial and JsStore Tutorial.

We are just storing the Image Blob object in the Indexed DB and using createObjectURL method to generate a url, and set that url to image src to display the image.

In this demo, code is written only for storing the image uploaded from your local machine but we can also download the image and keep it in local indexed DB using the code below:

var xhr = new XMLHttpRequest();
xhr.open("GET", yourImageUrl);
xhr.responseType = "blob";
xhr.onload = function response(e) {
   var urlCreator = window.URL || window.webkitURL;
   // this.response is your downloaded image Blob object
   var imageUrl = urlCreator.createObjectURL(this.response);
   document.querySelector("#yourImageId").src = imageUrl; 
};
xhr.send();

Note: The above code will only work if the requested server allow CORS.

You can check the live demo here.

imageblobdemo's People

Contributors

udaychy avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.