Where can I save the image?

In Python, how can I save a binary file (image, compressed file) from cgi to a local file?

  • for example, if I can get the data = form['image'] in cgi (the image is actually a file uploaded on web by the user), how can I "write" the file to /usr/..../xxx.jpg?

  • Answer:

    f=open('/usr/..../xxx.jpg') f.write(yourimagedate,'wb') f.close()

Timger Haibo at Quora Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.