Reputation: 91
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
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
Upvotes: 2