Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
matrix-media-repo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
matrix-media-repo
Commits
58f23cd5
Unverified
Commit
58f23cd5
authored
4 years ago
by
Sorunome
Browse files
Options
Downloads
Patches
Plain Diff
assume no orientation on bad exif information
parent
9b3a141a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
thumbnailing/u/framing.go
+2
-1
2 additions, 1 deletion
thumbnailing/u/framing.go
with
2 additions
and
1 deletion
thumbnailing/u/framing.go
+
2
−
1
View file @
58f23cd5
...
@@ -25,7 +25,8 @@ func MakeThumbnail(src image.Image, method string, width int, height int) (image
...
@@ -25,7 +25,8 @@ func MakeThumbnail(src image.Image, method string, width int, height int) (image
func
IdentifyAndApplyOrientation
(
origBytes
[]
byte
,
src
image
.
Image
)
(
image
.
Image
,
error
)
{
func
IdentifyAndApplyOrientation
(
origBytes
[]
byte
,
src
image
.
Image
)
(
image
.
Image
,
error
)
{
orientation
,
err
:=
util_exif
.
GetExifOrientation
(
ioutil
.
NopCloser
(
bytes
.
NewBuffer
(
origBytes
)))
orientation
,
err
:=
util_exif
.
GetExifOrientation
(
ioutil
.
NopCloser
(
bytes
.
NewBuffer
(
origBytes
)))
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
// assume no orientation if there was an error reading the exif header
orientation
=
nil
}
}
result
:=
src
result
:=
src
...
...
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