Compare commits

...

2 Commits

Author SHA1 Message Date
bc169183ba docs: . 2024-03-12 22:17:09 +08:00
acbc157694 feat: Init 2024-03-11 19:44:38 +08:00
2 changed files with 34 additions and 0 deletions

View File

@ -464,6 +464,14 @@ export class LabelCommand {
this.addStrToCommand(str);
}
/**
*
* @param x X dot
* @param y Y dot
* @param xend X dot
* @param yend X dot
* @param thickness 线dot
*/
addBox(
x: number,
y: number,

View File

@ -1 +1,27 @@
export * from "./command";
import {
FONTMUL,
FONTTYPE,
LabelCommand,
ROTATION,
EEC,
} from "@/command/Label";
function main() {
let label = new LabelCommand(50, 30, 0);
label.addText(
0,
0,
FONTTYPE.FONT_1,
ROTATION.ROTATION_0,
FONTMUL.MUL_1,
FONTMUL.MUL_1,
"Hello World"
);
label.addQRCode(0, 0, EEC.LEVEL_L, 5, ROTATION.ROTATION_0, "taoya.art");
var command = label.getCommand();
console.log(command); // 获取字节码
console.log(label.getCommandStr(command));
}
main();