-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fix] Add an additional/alternative auto-image-rotate option #91
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -310,7 +310,41 @@ public function processFile( | |
if ((bool)$ruleset['auto_orient'] === true) { | ||
$orientation = ImageUtility::getOrientation($fileName); | ||
$isRotated = ImageUtility::isRotated($orientation); | ||
$gifCreator->scalecmd = '-auto-orient ' . $gifCreator->scalecmd; | ||
|
||
if ((bool)$ruleset['auto_orient_custom'] === true) { | ||
switch ((int) $orientation) { | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please drop all those useless line breaks between cases, they do not bring anything and are not used either in the rest of the codebase. |
||
case 2: | ||
$gifCreator->scalecmd = '-flop'; | ||
break; | ||
|
||
case 3: | ||
$gifCreator->scalecmd = '-rotate 180'; | ||
break; | ||
|
||
case 4: | ||
$gifCreator->scalecmd = '-rotate 180 -flop'; | ||
break; | ||
|
||
case 5: | ||
$gifCreator->scalecmd = '-rotate -90 -flop'; | ||
break; | ||
|
||
case 6: | ||
$gifCreator->scalecmd = '-rotate -90'; | ||
break; | ||
|
||
case 7: | ||
$gifCreator->scalecmd = '-rotate 90 -flop'; | ||
break; | ||
|
||
case 8: | ||
$gifCreator->scalecmd = '-rotate 90'; | ||
break; | ||
} | ||
} else { | ||
$gifCreator->scalecmd = '-auto-orient ' . $gifCreator->scalecmd; | ||
} | ||
} | ||
|
||
if ( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,6 +85,12 @@ | |
'type' => 'check', | ||
], | ||
], | ||
'auto_orient_custom' => [ | ||
tobiasgraeber marked this conversation as resolved.
Show resolved
Hide resolved
|
||
'label' => 'Use custom auto_orient (flop rotate 6 and 8 handling, based on image exif)', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. => Use a Furthermore, I'd suggest to add a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, can be done, i leave that up to you :-) |
||
'config' => [ | ||
'type' => 'check', | ||
], | ||
], | ||
'keep_metadata' => [ | ||
'label' => 'LLL:EXT:image_autoresize/Resources/Private/Language/locallang_tca.xlf:tx_imageautoresize.keep_metadata', | ||
'config' => [ | ||
|
@@ -121,7 +127,7 @@ | |
'directories,threshold,file_types, | ||
--palette--;LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:ALT.imgDimensions;dimensions, | ||
--div--;LLL:EXT:image_autoresize/Resources/Private/Language/locallang_tca.xlf:tabs.options, | ||
auto_orient,keep_metadata,resize_png_with_alpha,conversion_mapping, | ||
auto_orient,auto_orient_custom,keep_metadata,resize_png_with_alpha,conversion_mapping, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Since this is fully related to |
||
--div--;LLL:EXT:image_autoresize/Resources/Private/Language/locallang_tca.xlf:tabs.rulesets, | ||
rulesets | ||
'], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no blank space before
$orientation
in CGLThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, can be done, i leave that up to you :-)