fix: use JPEGFactory for jpeg
This commit is contained in:
parent
1efefcfcb8
commit
3f50979d3e
1 changed files with 4 additions and 1 deletions
|
@ -266,7 +266,10 @@ public class PdfUtils {
|
||||||
} else {
|
} else {
|
||||||
BufferedImage image = ImageIO.read(file.getInputStream());
|
BufferedImage image = ImageIO.read(file.getInputStream());
|
||||||
BufferedImage convertedImage = ImageProcessingUtils.convertColorType(image, colorType);
|
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);
|
addImageToDocument(doc, pdImage, fitOption, autoRotate);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue