Browse Source

无jira任务,打包失败

10.0
kerry 6 years ago
parent
commit
acd6617ad1
  1. 5
      fine-itext/src/com/fr/third/v2/lowagie/text/pdf/PdfFont.java

5
fine-itext/src/com/fr/third/v2/lowagie/text/pdf/PdfFont.java

@ -169,13 +169,16 @@ public class PdfFont implements Comparable {
} }
float width(String s) { float width(String s) {
double width = 0.0d;
java.awt.Font font = this.getAwtFont(); java.awt.Font font = this.getAwtFont();
if (font.getSize2D() > 0) {
float scale = ONE_THOUSAND / font.getSize2D(); float scale = ONE_THOUSAND / font.getSize2D();
java.awt.Font derivedFont = font.deriveFont(AffineTransform.getScaleInstance(scale, scale)); java.awt.Font derivedFont = font.deriveFont(AffineTransform.getScaleInstance(scale, scale));
double width = derivedFont.getStringBounds(s, new FontRenderContext(new AffineTransform(), true, true)).getWidth(); width = derivedFont.getStringBounds(s, new FontRenderContext(new AffineTransform(), true, true)).getWidth();
if (derivedFont.isTransformed()){ if (derivedFont.isTransformed()){
width /= scale; width /= scale;
} }
}
if (image == null) if (image == null)
return (float) width * hScale; return (float) width * hScale;
else else

Loading…
Cancel
Save