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.
2 parents bc1fcdd + 13e479f commit 1f0a04aCopy full SHA for 1f0a04a
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