For bug 58832

Fix replacePictureData method
This commit is contained in:
Vladimir Privezenov
2026-02-09 18:17:52 +03:00
parent eb7efc3e18
commit 146f51adad

View File

@ -901,8 +901,9 @@
if (oMainGroup) {
oMainGroup.normalize();
}
let dExtX = this.extX;
let dExtY = this.extY;
const dScaleCoefficient = this.getScaleCoefficient();
let dExtX = this.extX / dScaleCoefficient;
let dExtY = this.extY / dScaleCoefficient;
let dX = oXfrm.offX;
let dY = oXfrm.offY;
let bFlipH = oXfrm.flipH;