-
Notifications
You must be signed in to change notification settings - Fork 38
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
Feature Request: add option to autorotate portrait pictures to fit horizontal screen #166
Comments
Should your formula not be: if (horizontal resolution of screen / vertical resolution of screen) > =1.5 AND (vertical resolution of picture / horizontal resolution of picture) >= 1.5 "Better fit the screen" As originally posted a square image would be auto rotated. Not sure how many people would find this useful though. |
@programmer-ceds, Arguing I'm mostly using small laptop, for me to rotate device to get a better (larger and properly rotated) view seems not difficult. For people on desktop with large monitor my proposed feature might seem not so useful, however I hope it won't require much changes as some form of rotation is already there. |
(horizontal resolution of picture / vertical resolution of picture) <= 1.5 as in your first post would be true for images that had aspect ratios of <= 1.5:1.0 so you would be rotating landscape images which was surely not the intention. What you are looking for are images that are at least 1.5 times as high as they are wide. This could also be achieved by changing the second condition in your original post to: (horizontal resolution of picture / vertical resolution of picture) <= 0.666 (recurring) (Programmers' humour can be subtle but wasn't intended here :-) ) |
@programmer-ceds, my mistake, you were correct with the formula suggestion. Thanks. |
Issue
On small screens pictures are hard to see. For portrait pictures ~ 2/3 of screen is left out when displaying them.
Please split "automatic orientation" option to two:
TA
The text was updated successfully, but these errors were encountered: