We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc1fcdd commit 13e479fCopy full SHA for 13e479f
components/formats-bsd/src/loci/formats/tiff/IFD.java
@@ -615,6 +615,9 @@ public int getPixelType() throws FormatException {
615
case 24:
616
return FormatTools.FLOAT;
617
case 64:
618
+ if (bitFormat != 3) {
619
+ throw new FormatException("64-bit int data not supported");
620
+ }
621
return FormatTools.DOUBLE;
622
case 32:
623
if (bitFormat == 3) return FormatTools.FLOAT;
0 commit comments