]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-2810; fix
authorChris Bowditch <cbowditch@apache.org>
Mon, 3 Sep 2018 15:03:53 +0000 (15:03 +0000)
committerChris Bowditch <cbowditch@apache.org>
Mon, 3 Sep 2018 15:03:53 +0000 (15:03 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1839970 13f79535-47bb-0310-9956-ffa450edef68

fop-core/src/main/java/org/apache/fop/render/pdf/PDFPainter.java

index a47203d5375a9c2b0032d0fe32876bd1af5dbb2d..de8b42aec1cbebe9fe52e6938cb4653135af183f 100644 (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++) {