Browse Source

修复文字错乱的问题

liwei 1 year ago
parent
commit
f947ecb1e3
1 changed files with 24 additions and 15 deletions
  1. 24 15
      src/modules/editor/objects/DesignTemp/creates/createCompStyle.ts

+ 24 - 15
src/modules/editor/objects/DesignTemp/creates/createCompStyle.ts

@@ -81,23 +81,32 @@ export function createCompStyle(
     adaptiveH: sizeOpts?.unit === "%",
   });
 
-  if (layout.transformMatrix) {
-    //样式的scale转 width
-    const m = Matrix.createFromMatrixStr(layout.transformMatrix);
-    const t = new Transform();
-    t.setFromMatrix(m);
-    const [w, h, sizeOpts] = layout.size;
-    style.width = designToNaturalSize(w * t.scale.x);
-    style.height = designToNaturalSize(h * t.scale.y, {
-      adaptiveH: sizeOpts?.unit === "%",
-    });
-
-    style.left = t.position.x + "px";
-    style.top = t.position.y + "px";
-    style.transform = `rotate(${t.rotation * UnitAngle}deg)`;
-    style.transformOrigin = "0 0";
+  if (comp.compKey == "Text" ) {
+    if (layout.transformMatrix) {
+      style.transform = layout.transformMatrix;
+      style.transformOrigin = "0 0";
+    }
+  } else {
+    if (layout.transformMatrix) {
+      //样式的scale转 width
+      const m = Matrix.createFromMatrixStr(layout.transformMatrix);
+      const t = new Transform();
+      t.setFromMatrix(m);
+      const [w, h, sizeOpts] = layout.size;
+      style.width = designToNaturalSize(w * t.scale.x);
+      style.height = designToNaturalSize(h * t.scale.y, {
+        adaptiveH: sizeOpts?.unit === "%",
+      });
+  
+      style.left = t.position.x + "px";
+      style.top = t.position.y + "px";
+      style.transform = `rotate(${t.rotation * UnitAngle}deg)`;
+      style.transformOrigin = "0 0";
+    }
   }
 
+  
+
   if (layout.background) {
     if (layout.background.color) {
       style.background = formatColor(layout.background.color);