feat: 绘制Header和Legend

This commit is contained in:
zhangyi
2025-03-21 17:23:53 +08:00
parent 4fc975bc03
commit b7a581fd16
5 changed files with 177 additions and 5 deletions
+24
View File
@@ -0,0 +1,24 @@
const PAPER_SIZE = {
A4: {
width: 2480,
height: 3508,
},
A3: {
width: 3508,
height: 4960,
},
A2: {
width: 4960,
height: 7016,
},
A1: {
width: 7016,
height: 10032,
},
A0: {
width: 10032,
height: 14176,
},
};
export { PAPER_SIZE };