Skip to content
Snippets Groups Projects
Commit 4a2312f0 authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Route to PngFileAccessor

parent daf2c42d
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,8 @@ def generate_file_accessor(fpath):
return TifSingleSeriesFileAccessor(fpath)
elif str(fpath).upper().endswith('.CZI'):
return CziImageFileAccessor(fpath)
elif str(fpath).upper().endswith('.PNG'):
return PngFileAccessor(fpath)
else:
raise FileAccessorError(f'Could not match a file accessor with {fpath}')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment