gnujpdf setTranform uses cm operator

This commit is contained in:
Jindra Petřík
2021-02-20 10:00:00 +01:00
parent fade88b658
commit 7eb151055b
3 changed files with 3 additions and 2 deletions

View File

@@ -622,7 +622,8 @@ public class FrameExporter {
}
}
g2.drawTransparentStringWithTransform(text.toString(), (float) x, (float) y, trans.toTransform());
g2.setTransform(trans.toTransform());
g2.drawTransparentString(text.toString(), (float) x, (float) y);
}
}