From 7d29bfbd5c14c1e1514b91a0bd94c101f067589b Mon Sep 17 00:00:00 2001 From: Francois Valdy Date: Tue, 18 Nov 2025 13:36:05 +0100 Subject: [PATCH] Fix transform decode typo It was reading twice xy instead of xy & yx --- src/additionalInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/additionalInfo.ts b/src/additionalInfo.ts index fb5a2b2..f92d055 100644 --- a/src/additionalInfo.ts +++ b/src/additionalInfo.ts @@ -442,7 +442,7 @@ addHandler( } const trnf = i.Trnf; if (trnf) { - item.transform = [trnf.xx, trnf.xy, trnf.xy, trnf.yy, trnf.tx, trnf.ty]; + item.transform = [trnf.xx, trnf.xy, trnf.yx, trnf.yy, trnf.tx, trnf.ty]; } target.vectorOrigination.keyDescriptorList.push(item);