ENH: Add tifffile IO plugin

This commit is contained in:
Zach Pincus
2012-02-21 17:53:16 -05:00
parent b127f60533
commit 9512678e75
2 changed files with 9 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
[tifffile]
description = Open, save, or display 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.html>\n")