comparison scripts/image/private/__tiff_isa__.m @ 31204:86d7c1be75dd

__tiff_isa__: implemented an "isa" function using Tiff interface * scripts/image/private/__tiff_isa__.m: implemented an "isa" function to be used for imformats, using the Tiff interface and independant of GraphicsMagick. * scripts/image/module.mk: added entry for the new function file.
author magedrifaat <magedrifaat@gmail.com>
date Sat, 03 Sep 2022 19:49:43 +0200
parents
children
comparison
equal deleted inserted replaced
31203:fa50e2c17568 31204:86d7c1be75dd
1 function tf = __tiff_isa__ (filename)
2 tf = true;
3 try
4 Tiff (filename);
5 catch
6 tf = false;
7 end_try_catch
8 endfunction