-
Notifications
You must be signed in to change notification settings - Fork 249
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
TiffIO: Allow bottom left origin for images #1428
base: master
Are you sure you want to change the base?
Conversation
Meeting discussion: string parsing vs boolean for setting bottom-left vs top-left. |
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.
fix tests
@apdavison I think you're best to review this, but if you think someone else is better just let me know. This is done now so you can review and merge whenever you want (or at our next meeting--no rush). |
@apdavison double check this before 0.14 |
@apdavison now that we've fixed the ci this is ready to review before the meeting next week :) |
Fixes #876.
I added in a note (in the docstring) explaining that upper left is the python default (from PIL and pillow). As a default I left the upper left, but if the user sets a new argument
python_image_origin=False
, then it will do bottom left. I agree that upper left is weird, but it is what the python world expects, so I think the boolean is fair (python standard vs other standard).python_image_origin
so if someone has a better name let me know.