-
Notifications
You must be signed in to change notification settings - Fork 7k
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 fill in rotate #1760
Fix fill in rotate #1760
Conversation
Hi, Thanks for the PR! I'm unsure about the fix. Isn't this just that the user who reported the problem had an old PIL version, that didn't support EDIT: oh just saw your comment in #1759, ok now I understand |
@fmassa How do you want to test this? Simply call |
Codecov Report
@@ Coverage Diff @@
## master #1760 +/- ##
=========================================
- Coverage 0.28% 0.28% -0.01%
=========================================
Files 92 92
Lines 7349 7355 +6
Branches 1108 1109 +1
=========================================
Hits 21 21
- Misses 7320 7326 +6
Partials 8 8
Continue to review full report at Codecov.
|
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.
Thanks a lot for the PR!
For the tests, let's create different images (with Image.fromarray
for example) of different types and check that rotate with fill works. We can also have a simple test that rotate an image by 45 degrees, and verify that the filled value for the (0, 0) pixel is the one we specified.
As in smoke test or actually compare the result to something? |
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.
This looks great, thanks a lot Philip!
* initial fix * outsourced num bands lookup * fix doc * added pillow version requirement * simplify number of bands extraction * remove unrelated change * remove indirect dependency on pillow>=5.2.0 * extend docstring to transform * bug fix * added test
Summary: * initial fix * outsourced num bands lookup * fix doc * added pillow version requirement * simplify number of bands extraction * remove unrelated change * remove indirect dependency on pillow>=5.2.0 * extend docstring to transform * bug fix * added test Pull Request resolved: #1825 Reviewed By: lerks Differential Revision: D19601729 Pulled By: fmassa fbshipit-source-id: e0f073b052ea49b0c316f71ab5057641c92220e1
Fixes #1759
ToDo:
NUM_BANDS
dictpillow<5.0.0