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.
My knowledge in Django is limited and So I need guidance on whether which of the approaches would make it easier for the images to be processed by Django. The images are small in size (<200kb) and number (<10). Any suggestions or pointers are most welcome.