0

我正在使用以下功能

public void renderImage(ImageRenderInfo renderInfo) {
    try {
        String filename;
        FileOutputStream os;
        PdfImageObject image = renderInfo.getImage();


        PdfDictionary imageDict = renderInfo.getImage().getDictionary();
        float widthPx = imageDict.getAsNumber(PdfName.WIDTH).floatValue(); 
        float heightPx = imageDict.getAsNumber(PdfName.HEIGHT).floatValue();
        float widthUu = renderInfo.getImageCTM().get(Matrix.I11);
        float heigthUu = renderInfo.getImageCTM().get(Matrix.I22);

 //while printing in inches I am dividing heightUu and widthUu by 72

        System.out.printf("Image %.0fpx*%.0fpx, %.0fuu*%.0fuu, %.2fin*%.2fin\n", widthPx, heightPx, widthUu, heigthUu, widthUu/72, heigthUu/72);

        if (image == null) return;
        filename = String.format(path, renderInfo.getRef().getNumber(), image.getFileType());
        System.out.println(filename);
        os = new FileOutputStream(filename);
        os.write(image.getImageAsBytes());
        os.flush();
        os.close();


    } catch (IOException e) {
        System.out.println(e.getMessage());
    }
}

当我在 Photoshop 中检查图像尺寸时,我完美地得到了以像素为单位的高度和宽度,但没有正确地得到以英寸为单位的宽度和高度

我需要它来计算图像的 DPI。

例如:

图片原始值: 宽度 - 450 像素和高度 - 362 像素

宽度 - 6.25 英寸和高度 - 5.028 英寸(值来自 Photoshop)

我从 itext 收到的信息:

宽度 - 450 像素和高度 - 362 像素(这是完美的)

宽度 -3.60 英寸和高度 - 2.90 英寸(这是问题所在)

4

0 回答 0