Aditya Batra
Aditya Batra

Reputation: 91

Ionic 2 - Need to convert image from an url to base64 string

I am getting file url from server through http.post request. I need to convert image to base64 string for database storage.

Please let me know how can i convert image from an url to base64 string in ionic 2

Upvotes: 0

Views: 8142

Answers (1)

Joshua Ohana
Joshua Ohana

Reputation: 6141

As Stefan managed you probably want to do this server side; however if for whatever reason you cannot there's a bajillion resources out there showing you how to convert an image to base64. It's nothing Ionic specific, you can with just some javascript action. The below should get you started.

How to convert image into base64 string using javascript

CONVERT Image url to Base64

Upvotes: 2

Related Questions