Browse Source

FOP-2810; fix

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1839970 13f79535-47bb-0310-9956-ffa450edef68
pull/13/head
Chris Bowditch 5 years ago
parent
commit
6ab6fa405e
1 changed files with 16 additions and 1 deletions
  1. 16
    1
      fop-core/src/main/java/org/apache/fop/render/pdf/PDFPainter.java

+ 16
- 1
fop-core/src/main/java/org/apache/fop/render/pdf/PDFPainter.java View File

@@ -544,7 +544,22 @@ public class PDFPainter extends AbstractIFPainter<PDFDocumentHandler> {
double xoLast = 0f;
double yoLast = 0f;
double wox = wordSpacing;
tu.writeTextMatrix(new AffineTransform(1, 0, 0, -1, x / 1000f, y / 1000f));

// FOP-2810
boolean simulateStyle = tf instanceof CustomFont && ((CustomFont) tf).getSimulateStyle();
double shear = 0;

if (simulateStyle) {
if (triplet.getWeight() == 700) {
generator.add("q\n");
generator.add("2 Tr 0.31543 w\n");
}
if (triplet.getStyle().equals("italic")) {
shear = 0.3333;
}
}

tu.writeTextMatrix(new AffineTransform(1, 0, shear, -1, x / 1000f, y / 1000f));
tu.updateTf(fk, fsPoints, tf.isMultiByte(), true);
generator.updateCharacterSpacing(letterSpacing / 1000f);
for (int i = 0, n = text.length(); i < n; i++) {

Loading…
Cancel
Save