Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hsin-Yu Chien
edx-platform-release
Commits
82345810
Commit
82345810
authored
8 years ago
by
Syed Hasan raza
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #13853 from edx/shr/bug/TNL-5591-update-orientation-with-None-value
fix None value for orientation update
parents
d59ab18b
178e497c
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openedx/core/djangoapps/profile_images/images.py
+2
-1
2 additions, 1 deletion
openedx/core/djangoapps/profile_images/images.py
openedx/core/djangoapps/profile_images/tests/test_images.py
+15
-0
15 additions, 0 deletions
openedx/core/djangoapps/profile_images/tests/test_images.py
with
17 additions
and
1 deletion
openedx/core/djangoapps/profile_images/images.py
+
2
−
1
View file @
82345810
...
...
@@ -205,7 +205,8 @@ def _update_exif_orientation(exif, orientation):
the exif orientation, return a new exif with the orientation set.
"""
exif_dict
=
piexif
.
load
(
exif
)
exif_dict
[
'
0th
'
][
piexif
.
ImageIFD
.
Orientation
]
=
orientation
if
orientation
:
exif_dict
[
'
0th
'
][
piexif
.
ImageIFD
.
Orientation
]
=
orientation
return
piexif
.
dump
(
exif_dict
)
...
...
This diff is collapsed.
Click to expand it.
openedx/core/djangoapps/profile_images/tests/test_images.py
+
15
−
0
View file @
82345810
...
...
@@ -24,6 +24,7 @@ from ..images import (
validate_uploaded_image
,
_get_exif_orientation
,
_get_valid_file_types
,
_update_exif_orientation
)
from
.helpers
import
make_image_file
,
make_uploaded_file
...
...
@@ -186,6 +187,20 @@ class TestGenerateProfileImages(TestCase):
for
_
,
image
in
self
.
_create_mocked_profile_images
(
imfile
,
requested_images
):
self
.
check_exif_orientation
(
image
,
None
)
def
test_update_exif_orientation_without_orientation
(
self
):
"""
Test the update_exif_orientation without orientation will not throw exception.
"""
requested_images
=
{
10
:
"
ten.jpg
"
}
with
make_image_file
(
extension
=
'
.jpg
'
)
as
imfile
:
for
_
,
image
in
self
.
_create_mocked_profile_images
(
imfile
,
requested_images
):
self
.
check_exif_orientation
(
image
,
None
)
exif
=
image
.
info
.
get
(
'
exif
'
,
piexif
.
dump
({}))
self
.
assertEqual
(
_update_exif_orientation
(
exif
,
None
),
image
.
info
.
get
(
'
exif
'
,
piexif
.
dump
({}))
)
def
_create_mocked_profile_images
(
self
,
image_file
,
requested_images
):
"""
Create image files with mocked-out storage.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment