本文整理了Java中org.apache.pdfbox.util.Matrix.getXScale()
方法的一些代码示例,展示了Matrix.getXScale()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Matrix.getXScale()
方法的具体详情如下:
包路径:org.apache.pdfbox.util.Matrix
类名称:Matrix
方法名:getXScale
暂无
代码示例来源:origin: tamirhassan/pdfxtk
trm.setValue( 2,1, x );
float xScale = trm.getXScale();
float yScale = trm.getYScale();
float xPos = trm.getXPosition();
代码示例来源:origin: asciidoctor/asciidoctorj
float angle = (float)Math.acos(ctmNew.getValue(0, 0)/ctmNew.getXScale());
if (ctmNew.getValue(0, 1) < 0 && ctmNew.getValue(1, 0) > 0) {
angle = (-1)*angle;
im.setOriginalWidth(imageWidth);
im.setOriginalHeight(imageHeight);
im.setRenderedWidth(Math.round(ctmNew.getXScale()));
im.setRenderedHeight(Math.round(ctmNew.getYScale()));
内容来源于网络,如有侵权,请联系作者删除!