comparison scripts/io/Tiff.m @ 31173:0abc9779f751

Tiff: modified readRGBAImage to use the orientation tag correctly * __tiff__.cc (F__tiff_read_rgba_image__): modified the way the image is read to use the orientation tag in the correct way.
author magedrifaat <magedrifaat@gmail.com>
date Tue, 16 Aug 2022 16:10:10 +0200
parents 3f5f1404af8a
children c7c79973007f
comparison
equal deleted inserted replaced
31172:3f5f1404af8a 31173:0abc9779f751
385 methods (Static = true) 385 methods (Static = true)
386 function versionString = getVersion() 386 function versionString = getVersion()
387 versionString = __tiff_version__ (); 387 versionString = __tiff_version__ ();
388 endfunction 388 endfunction
389 389
390 function tagNames = getTagNames ()
391 tagNames = fieldnames (Tiff.TagID);
392 endfunction
393
390 function setLibTIFFErrorsEnabled(state) 394 function setLibTIFFErrorsEnabled(state)
391 __tiff_set_errors_enabled__ (state); 395 __tiff_set_errors_enabled__ (state);
392 endfunction 396 endfunction
393 endmethods 397 endmethods
394 endclassdef 398 endclassdef