这是 iText5 函数的一部分,首先获取页面高度和宽度,然后与输入参数进行比较。
Rectangle rectangle = page.getPageSize();
float pageHeight = com.itextpdf.text.Utilities.pointsToInches(rectangle.getHeight());
float pageWidth = com.itextpdf.text.Utilities.pointsToInches(rectangle.getWidth());
我通读了 iText7 API,找不到 pointsToInches 或类似的函数。看起来很简单,我不确定我是否错过了它或者它在 iText7 中掉线了。任何人都知道函数或如何将点转换为英寸。任何帮助表示赞赏。