diff --git a/components/formats-gpl/src/loci/formats/in/SVSReader.java b/components/formats-gpl/src/loci/formats/in/SVSReader.java index d3231b5bfdf..d9820b62dd7 100644 --- a/components/formats-gpl/src/loci/formats/in/SVSReader.java +++ b/components/formats-gpl/src/loci/formats/in/SVSReader.java @@ -174,7 +174,9 @@ else if (description instanceof String) { } if (imageDescription != null && imageDescription.startsWith(APERIO_IMAGE_DESCRIPTION_PREFIX)) { - return true; + // reject anything with just one IFD, as that indicates there is + // no pyramid, thumbnail, label, or macro + return tiffParser.getIFDOffsets().length > 1; } } return false;