in thumbnails4j-xls/src/main/java/co/elastic/thumbnails4j/xls/XLSThumbnailer.java [58:65]
public List<BufferedImage> getThumbnails(File input, List<Dimensions> dimensions) throws ThumbnailingException {
try {
return getThumbnails(ExcelToHtmlConverter.process(input), dimensions);
} catch (IOException|ParserConfigurationException|TransformerException e) {
logger.error("Failed to parse XLS: ", e);
throw new ThumbnailingException(e);
}
}