|
@@ -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);
|