Browse Source

优化修改打印英文时报错

LinWuTai 1 year ago
parent
commit
0b676bf85c

+ 0 - 25
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/WindowsFormApp.java

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

+ 10 - 4
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/domain/PTXLabelCode.java

@@ -7,16 +7,19 @@ public class PTXLabelCode {
     /** 二维码类型 1:条码 2:二维码 */
     private Integer codeType;
 
-    /** y轴间距 */
+    /** 标签间距 */
     private Integer spaceBetween;
 
     /** x坐标 */
     private Integer X;
 
-    /** y坐标 */
+    /** y坐标 最小为 标签间距 / 2 - 5  */
     private Integer Y;
 
-    /** 宽度 */
+    /** 宽度<br/>
+     * 条形码:最大宽度:4
+     * 二维码:5 = 1厘米
+     * */
     private Integer width;
 
     /** 存入数据<br/>
@@ -27,6 +30,9 @@ public class PTXLabelCode {
     /** 条码下是否显示文字  */
     private Boolean isShowText;
 
-    /** 条码高度 */
+    /** 条码高度<br/>
+     *  单位为0.1英寸<br/>
+     *  包含码文是最小为4,不包含码文是最小为3,最大99
+     * */
     private Double height;
 }

+ 2 - 2
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/domain/PTXLabelText.java

@@ -12,13 +12,13 @@ public class PTXLabelText {
     /** 文字类型 0:英文,1:中文*/
     private Integer textType;
 
-    /** y轴间距 */
+    /** 标签间距 */
     private Integer spaceBetween;
 
     /** x坐标 */
     private Integer x;
 
-    /** y坐标 */
+    /** y坐标 最小为 标签间距 / 2 - 5 */
     private Integer y;
 
     /** x轴垂直扩展 */

+ 4 - 0
ruoyi-admin/src/main/java/com/ruoyi/ptxlib/service/impl/PTXService.java

@@ -192,6 +192,10 @@ public class PTXService {
         Integer xLineHeight = ptxLabelText.getXLineHeight();
         Integer yLineHeight = ptxLabelText.getYLineHeight();
         String printData = ptxLabelText.getPrintData();
+        if (StrUtil.isNotBlank(printData)) {
+            // 去除中文
+            printData = printData.replaceAll("[\\u4e00-\\u9fa5]", "");
+        }
 
         printTextEn(x, y, xLineHeight, yLineHeight, printData);
     }