Best Approach to process images in Django
- by primalpop
I've have an application with Android front end and Django as the back end. As part of the answers here, I'm confused over the approach which I should take to send images to Django Server. I've 2 options at my disposal as Piro pointed out there.
1) Sending images as Multi Part entity
2) Send image as a String after encoding it using Base 64.
So I am considering the approach that would make it easy to be processed by Django. The images are small in size (<200kb) and number (<10). Any suggestions or pointers are most welcome.