-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransform.ts
More file actions
436 lines (426 loc) · 12.4 KB
/
transform.ts
File metadata and controls
436 lines (426 loc) · 12.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/**
* 示例:演示 Transform 组件的基础属性
* 展示移动(translate)、旋转(rotate)、放大(scale)等变换效果
* 运行: bun examples/transform.ts
*/
import { Box, createCanvas, printLayout, Text, Transform } from "@/index";
import { GlobalFonts } from "@napi-rs/canvas";
import { fileURLToPath } from "bun";
GlobalFonts.registerFromPath(fileURLToPath(import.meta.resolve("@fontpkg/unifont/unifont-15.0.01.ttf")), "unifont");
const canvas = createCanvas({
width: 800,
height: 1000,
pixelRatio: 2,
});
// 创建一个简单的演示盒子
function DemoBox(label: string, transform?: any) {
return Transform({
transform,
transformOrigin: ["50%", "50%"],
children: Box({
width: 80,
height: 80,
background: "#667eea",
border: { radius: 8 },
justify: "center",
align: "center",
children: [
Text({
content: label,
font: { size: 12, weight: "bold", family: "unifont" },
color: "#ffffff",
}),
],
}),
});
}
const layout = canvas.render(
Box({
width: "fill",
height: "fill",
background: "#f5f7fa",
padding: 20,
direction: "column",
gap: 20,
children: [
// 标题
Text({
content: "Transform 变换演示",
font: { size: 28, weight: "bold", family: "unifont" },
color: "#333333",
}),
// 第一行:平移演示
Box({
direction: "column",
gap: 10,
children: [
Text({
content: "1. 平移 (Translate)",
font: { size: 16, weight: "bold", family: "unifont" },
color: "#666666",
}),
Box({
background: "#ffffff",
border: { radius: 8 },
padding: 20,
direction: "row",
gap: 30,
align: "center",
children: [
// 没有变换
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("原始"),
Text({
content: "原始位置",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 向右平移 30 像素
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("右移30", {
translate: [30, 0],
}),
Text({
content: "translateX(30)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 向下平移 20 像素
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("下移20", {
translate: [0, 20],
}),
Text({
content: "translateY(20)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 同时平移
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("对角", {
translate: [25, 15],
}),
Text({
content: "translate(25, 15)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
],
}),
],
}),
// 第二行:缩放演示
Box({
direction: "column",
gap: 10,
children: [
Text({
content: "2. 缩放 (Scale)",
font: { size: 16, weight: "bold", family: "unifont" },
color: "#666666",
}),
Box({
background: "#ffffff",
border: { radius: 8 },
padding: 20,
direction: "row",
gap: 30,
align: "center",
children: [
// 原始
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("1.0"),
Text({
content: "scale(1.0)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 放大 1.5 倍
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("1.5倍", {
scale: 1.5,
}),
Text({
content: "scale(1.5)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 缩小到 0.7 倍
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("0.7倍", {
scale: 0.7,
}),
Text({
content: "scale(0.7)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 非均匀缩放
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("非均匀", {
scale: [1.3, 0.8],
}),
Text({
content: "scale(1.3, 0.8)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
],
}),
],
}),
// 第三行:旋转演示
Box({
direction: "column",
gap: 10,
children: [
Text({
content: "3. 旋转 (Rotate)",
font: { size: 16, weight: "bold", family: "unifont" },
color: "#666666",
}),
Box({
background: "#ffffff",
border: { radius: 8 },
padding: 20,
direction: "row",
gap: 30,
align: "center",
children: [
// 原始
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("0°"),
Text({
content: "rotate(0°)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 顺时针 45 度
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("45°", {
rotate: 45, // 45度
}),
Text({
content: "rotate(45°)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 旋转 90 度
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("90°", {
rotate: 90, // 90度
}),
Text({
content: "rotate(90°)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 旋转 -30 度
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("-30°", {
rotate: -30, // -30度
}),
Text({
content: "rotate(-30°)",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
],
}),
],
}),
// 第四行:组合变换演示
Box({
direction: "column",
gap: 10,
children: [
Text({
content: "4. 组合变换",
font: { size: 16, weight: "bold", family: "unifont" },
color: "#666666",
}),
Box({
background: "#ffffff",
border: { radius: 8 },
padding: 20,
direction: "row",
gap: 30,
align: "center",
children: [
// 平移 + 旋转
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("移+转", {
translate: [20, 10],
rotate: 30, // 30度
}),
Text({
content: "移动 + 旋转",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 缩放 + 旋转
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("缩+转", {
scale: 1.2,
rotate: -22.5, // -22.5度
}),
Text({
content: "缩放 + 旋转",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 三个变换组合
Box({
direction: "column",
gap: 8,
align: "center",
children: [
DemoBox("全部", {
translate: [15, 10],
scale: 1.1,
rotate: 45, // 45度
}),
Text({
content: "移动 + 缩放 + 旋转",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
// 使用 transformOrigin 改变变换中心
Box({
direction: "column",
gap: 8,
align: "center",
children: [
Transform({
transformOrigin: ["100%", "100%"],
transform: {
rotate: 45, // 45度
scale: 1.2,
},
children: Box({
width: 80,
height: 80,
background: "#764ba2",
border: { radius: 8 },
justify: "center",
align: "center",
children: [
Text({
content: "变换原点",
font: {
size: 12,
weight: "bold",
family: "unifont",
},
color: "#ffffff",
}),
],
}),
}),
Text({
content: "自定义原点",
font: { size: 12, family: "unifont" },
color: "#999999",
}),
],
}),
],
}),
],
}),
],
})
);
// 保存文件
const buffer = await canvas.toBuffer("image/png");
await Bun.write("examples/transform.png", buffer);
console.log("Transform demo saved to examples/transform.png");
// 打印布局树
console.log("\n=== Layout Tree ===");
printLayout(layout);