Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-rest-framework
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
django-rest-framework
Commits
6ceb0fa9
Commit
6ceb0fa9
authored
Nov 27, 2013
by
Tom Christie
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1252 from thedrow/patch-3
Recommend using Pillow instead of PIL.
parents
43c4e3aa
c46106c9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
docs/api-guide/fields.md
+1
-1
rest_framework/fields.py
+1
-1
No files found.
docs/api-guide/fields.md
View file @
6ceb0fa9
...
@@ -286,7 +286,7 @@ An image representation.
...
@@ -286,7 +286,7 @@ An image representation.
Corresponds to `django.forms.fields.ImageField`.
Corresponds to `django.forms.fields.ImageField`.
Requires
the `PIL` package
.
Requires
either the `Pillow` package or `PIL` package. The `Pillow` package is recommended, as `PIL` is no longer actively maintained
.
Signature and validation is the same as with `FileField`.
Signature and validation is the same as with `FileField`.
...
...
rest_framework/fields.py
View file @
6ceb0fa9
...
@@ -966,7 +966,7 @@ class ImageField(FileField):
...
@@ -966,7 +966,7 @@ class ImageField(FileField):
return
None
return
None
from
rest_framework.compat
import
Image
from
rest_framework.compat
import
Image
assert
Image
is
not
None
,
'
PIL must be installed for ImageField support
'
assert
Image
is
not
None
,
'
Either Pillow or PIL must be installed for ImageField support.
'
# We need to get a file object for PIL. We might have a path or we might
# We need to get a file object for PIL. We might have a path or we might
# have to read the data into memory.
# have to read the data into memory.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment