Django upload Image

Source: Internet
Author: User
# Coding = UTF-8
Import stringio
From Pil Import image

From Django. Http import httpresponse
From Django. Shortcuts import render_to_response

Upload_url = 'photo/upload /'

Def upload (request ):
Buf = request. Files. Get ('photo ', none)
Data = Buf. Read ()
F = stringio. stringio (data)
Image = image. Open (f)
Image = image. Convert ('rgb ')
Name = '% S % s' % (upload_url, Buf. Name)
Image. Save (file (name, 'wb '), 'png ')
Return httpresponse ('success ')

An exception occurs when Buf ['content'] is used to replace Buf. Read () with Buf ['filename'] instead of BUF. Name.
"<Type 'exceptions. typeerror'>
'Inmemoryuploadedfile' object is unsubscriptable

HtmlCode:

<Form method = "Post" Action = "/Photo/upload/" enctype = "multipart/form-Data">
Select image: <input type = "file" name = "photo"/> <br>
<Input type = "Submit" value = "Upload">
</Form>

Enctype = "multipart/form-Data" is used to upload large files, including non-ASCII codes, in binary format

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.