-
Notifications
You must be signed in to change notification settings - Fork 683
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
Add new allowConversionToBitmap flag, fixes #773 #775
Conversation
This allows animated transformations and normal transformations to coexist on the same request. If this flag is set to false: - A normal bitmap result will have normal transformations applied to it - An animated result will be left intact which allows animatedTransformations to apply.
Wasn't sure how to re-generate |
Awesome, thanks for adding this! You'll need to run |
Updated, ptal |
@edenman Looks like there are just a couple minor ktlint warnings left. |
Also had a test failure on api 19, fixed that and the ktlint stuff |
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.
@edenman Awesome, thanks for implementing this!
* Add new allowConversionToBitmap flag, fixes #773 This allows animated transformations and normal transformations to coexist on the same request. If this flag is set to false: - A normal bitmap result will have normal transformations applied to it - An animated result will be left intact which allows animatedTransformations to apply. * Update api, add instructions to contributing.md * Add binary compatibility copy method * Add binary compatibility constructor too * Move decoder to ImageLoader to fix tests on pre-28 * Fix ktlint errors * Fix test failure on pre-21
This allows animated transformations and normal transformations to
coexist on the same request. If this flag is set to false:
animatedTransformations to apply.