MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / dumpTag

Method dumpTag

ij/src/main/java/ij/io/TiffDecoder.java:309–315  ·  view source on GitHub ↗
(int tag, int count, int value, FileInfo fi)

Source from the content-addressed store, hash-verified

307 }
308
309 void dumpTag(int tag, int count, int value, FileInfo fi) {
310 long lvalue = ((long)value)&0xffffffffL;
311 String name = getName(tag);
312 String cs = (count==1)?"":", count=" + count;
313 dInfo += " " + tag + ", \"" + name + "\", value=" + lvalue + cs + "\n";
314 //ij.IJ.log(tag + ", \"" + name + "\", value=" + value + cs + "\n");
315 }
316
317 String getName(int tag) {
318 String name;

Callers 1

OpenIFDMethod · 0.95

Calls 1

getNameMethod · 0.95

Tested by

no test coverage detected