fix: font normalizer axis flip (#2657)

Fixes #2657
This commit is contained in:
Jindra Petřík
2026-03-07 20:10:52 +01:00
parent 65a47bbda3
commit 3bce48a87f

View File

@@ -300,6 +300,7 @@ public class FontNormalizer {
if (invertedFontIds.contains(fontId)) {
if (text2.textMatrix != null && text2.textMatrix.scaleY < 0) {
text2.textMatrix.scaleY *= -1;
text2.textMatrix.rotateSkew1 *= -1;
}
}