Thanks, I solved it finally stackoverflow.com/a/51453785/1485853
--
https://mail.python.org/mailman/listinfo/python-list
On Mon, Jul 16, 2018 at 06:40:45AM -0700, Christos Georgiou - ΤΖΩΤΖΙΟΥ wrote:
> You need first to serialize the object to bytes that can go over the
> wire. There is no predefined way to do that, so you can:
>
> >>> import io
> >>> file_like_object = io.BytesIO()
> >>> PILImage.save(file_like_obj
On Monday, July 16, 2018 at 3:52:09 PM UTC+3, iMath wrote:
> I also posted the question here
> https://stackoverflow.com/questions/51355926/send-pil-image-to-django-server-side-and-get-it-back
>
> I don't know what's under the hood of sending an image from client side to
> server side, so stuck b