Merge pull request #552 from sbplat/main

fix: use JPEGFactory for jpeg
This commit is contained in:
Anthony Stirling
2023-12-24 18:02:12 +00:00
committed by GitHub

View File

@@ -266,7 +266,10 @@ public class PdfUtils {
} else {
BufferedImage image = ImageIO.read(file.getInputStream());
BufferedImage convertedImage = ImageProcessingUtils.convertColorType(image, colorType);
PDImageXObject pdImage = LosslessFactory.createFromImage(doc, convertedImage);
// Use JPEGFactory if it's JPEG since JPEG is lossy
PDImageXObject pdImage = (contentType != null && contentType.equals("image/jpeg"))
? JPEGFactory.createFromImage(doc, convertedImage)
: LosslessFactory.createFromImage(doc, convertedImage);
addImageToDocument(doc, pdImage, fitOption, autoRotate);
}
}