Properly close PDF snapshots loaded with pdfbox library

This commit is contained in:
luccioman 2019-03-22 09:50:30 +01:00
parent 74e6d6e984
commit 4d8a948455

View File

@ -348,8 +348,8 @@ public class Html2Image {
// convert pdf to jpg using internal pdfbox capability
if (convertCmd == null) {
try {
PDDocument pdoc = PDDocument.load(pdf);
try (final PDDocument pdoc = PDDocument.load(pdf);) {
BufferedImage bi = new PDFRenderer(pdoc).renderImageWithDPI(0, density, ImageType.RGB);
return ImageIO.write(bi, imageFormat, image);