public List getThumbnails()

in thumbnails4j-xls/src/main/java/co/elastic/thumbnails4j/xls/XLSThumbnailer.java [68:75]


    public List<BufferedImage> getThumbnails(InputStream 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);
        }
    }