in thumbnails4j-xlsx/src/main/java/co/elastic/thumbnails4j/xlsx/XLSXThumbnailer.java [62:69]
public List<BufferedImage> getThumbnails(InputStream input, List<Dimensions> dimensions) throws ThumbnailingException {
try (Workbook workbook = WorkbookFactory.create(input)) {
return getThumbnails(workbook, dimensions);
} catch (IOException e) {
logger.error("Failed to parse XLSX: ", e);
throw new ThumbnailingException(e);
}
}