I\'m trying to convert an image (link) to base64 to be able to store in the Browser side (IndexedDB), but i\'m not able to do that, I have been looking for a solution for da
for same origin policy you must add headers for server side from where you want your images
here is how to do this - http://enable-cors.org/server.html
for development purpose you can install 'CORS' extension in CHROME browser to allow cross origin request
hope this helps and solve your issue.