I need to build a web portal that uploads images to a database. These images will be displayed in an android app, and the web portal.
The common method I use when dealing strictly with apps is as follows:
- compress the picture
- encode it to a base91 string
- send to server for storage
How do I achieve this in the context of a website(using javascript or python)? particularly the encode/decode (Base91) part.
ps: My experience with web is very basic.