1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package org.jeecg.modules.ai.vo;
|
| import com.itextpdf.text.Rectangle;
| import lombok.Data;
|
| /**
| * @author clown
| * * @date 2024/7/23
| * 字体的位置信息
| */
| @Data
| public class ItemPosition {
| private Integer page;
| private String text;
| //这个字的矩形坐标
| private Rectangle rectangle;
| }
|
|