|
@@ -4,32 +4,7 @@ import com.ruoyi.ptxlib.domain.PTXLabelText;
|
|
|
import com.ruoyi.ptxlib.service.PTXLib;
|
|
|
import com.ruoyi.ptxlib.service.impl.PTXService;
|
|
|
|
|
|
-import static com.ruoyi.ptxlib.constant.PTXConstants.*;
|
|
|
-
|
|
|
public class WindowsFormApp {
|
|
|
- public static void func1() {
|
|
|
- // 初始化
|
|
|
- PTXLib.INSTANCE.PTXA_DLLinit();
|
|
|
- // 打开端口拦截
|
|
|
- PTXLib.INSTANCE.openport("USB"); // 使用USB口打印
|
|
|
- // 设置打印头 300*300
|
|
|
- PTXLib.INSTANCE.PTXA_Scale(300, 300);
|
|
|
- // 设置字体样式 MSGBL.TTF
|
|
|
- PTXLib.INSTANCE.PTXA_FontSetup(PTXA_FontName, "MSGBL.TTF");
|
|
|
- // 设置字体编码 UTF-8
|
|
|
- PTXLib.INSTANCE.PTXA_FontSetup(PTXA_FontEncoding, PTXA_CPUTF8);
|
|
|
- // 设置字体加粗
|
|
|
- PTXLib.INSTANCE.PTXA_FontSetup(PTXA_FontBold, PTXA_BoldOn);
|
|
|
- // 创建表单
|
|
|
- Integer lForm = PTXLib.INSTANCE.PTXA_CreateForm("formName");
|
|
|
-
|
|
|
- PTXLib.INSTANCE.PTXA_PrintTextEng(lForm,0, 35,10,10,"uuid3304");
|
|
|
-
|
|
|
- PTXLib.INSTANCE.PTXA_PrintForm(lForm);
|
|
|
-
|
|
|
- PTXLib.INSTANCE.closeport();
|
|
|
- }
|
|
|
-
|
|
|
public static void main(String[] args) {
|
|
|
PTXService ptxService = new PTXService();
|
|
|
|