Is there a way in MATLAB 7.10 (R2010a) to find out if the "Tag" for a TIFF file is empty?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
I am using the getTag function in the Tiff class to query the "Tag" field. The function works fine. But if the Tag is empty, my code terminates with an error. I want to know if there is a way to find out if the field is empty, and if it is not, then query its contents.
0 comentarios
Respuestas (1)
Adity
el 18 de En. de 2011
There is no direct way to use the Tiff object to query whether the Tag field is present or not. This is because the Tiff object is really just a thin wrapper around the libtiff library, which does not offer a function for inquiring as to whether a tag is present. One finds out only by asking for the value, and this means one would have to use try/catch with getTag on the Tiff object.
0 comentarios
Ver también
Categorías
Más información sobre Image Data en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!