We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
As of Pillow 10.1, Pillow uses a tuple for the GaussianBlur filter. Single int values are no longer accepted by the c function.
Sorl uses the prior single int call, but calls int(options["blur"]) before, which makes it impossible to give blur=(2, 2) as an option.
I'll create a pull request with changes to pil_engine.py and engines/base.py that supports Pillow >= 10.1
The text was updated successfully, but these errors were encountered:
Fixes jazzband#773: Accept a tuple as blur radius and ensure to call …
ff0b72b
…PIL blur filter with a tuple
Fixes #773: Accept a tuple as blur radius use GaussianBlur from PIL
594418a
Successfully merging a pull request may close this issue.
As of Pillow 10.1, Pillow uses a tuple for the GaussianBlur filter. Single int values are no longer accepted by the c function.
Sorl uses the prior single int call, but calls int(options["blur"]) before, which makes it impossible to give blur=(2, 2) as an option.
I'll create a pull request with changes to pil_engine.py and engines/base.py that supports Pillow >= 10.1
The text was updated successfully, but these errors were encountered: