Best Approach to process images in Django
Posted
by primalpop
on Stack Overflow
See other posts from Stack Overflow
or by primalpop
Published on 2010-05-31T00:59:49Z
Indexed on
2010/05/31
1:02 UTC
Read the original article
Hit count: 343
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.
© Stack Overflow or respective owner