Reinstate tifffile_plugin for backwards compatibility

This commit is contained in:
Steven Silvester
2014-10-07 06:59:29 -05:00
parent 1a1a7cac53
commit fa5a575743
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
[tifffile]
description = Load and save TIFF and TIFF-based images using tifffile.py
provides = imread, imsave
+6
View File
@@ -0,0 +1,6 @@
try:
from tifffile import imread, imsave
except ImportError:
raise ImportError("The tifffile module could not be found.\n"
"It can be obtained at "
"<http://www.lfd.uci.edu/~gohlke/code/tifffile.py>\n")