10000 Added compression option to save TIFF images by renato-umeton · Pull Request #8531 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Added compression option to save TIFF images #8531

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

Closed
wants to merge 9 commits into from
Closed
Prev Previous commit
Next Next commit
Removed unused import
  • Loading branch information
renato-umeton committed Apr 26, 2017
commit ca69a47bb11b3922488b372d8cbcfa08e3f8a266
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_agg.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
from matplotlib import _png

try:
from PIL import Image, TiffImagePlugin
from PIL import Image
_has_pil = True
except ImportError:
_has_pil = False
Expand Down
0