v1.8.1
This commit is contained in:
@@ -1,5 +1,30 @@
|
||||
# 更新日志
|
||||
|
||||
## 2025-7-22
|
||||
|
||||
### V1.8.1
|
||||
|
||||
#### word
|
||||
|
||||
1. **feat**: 支持同一段落多图片文字
|
||||
|
||||
```cpp
|
||||
picture := TOfficeObj('TPicture');
|
||||
picture.Descr := '插入图像案例';
|
||||
picture.Image := TOfficeTemplate('tinysoft.gif',true);
|
||||
|
||||
docx := new TSDocxFile();
|
||||
docx.NewFile();
|
||||
p := new TOfficeObj('TParagraph');
|
||||
r := p.AddRun();
|
||||
r.SetText("abc");
|
||||
r := p.AddRun();
|
||||
r.SetDrawing(picture, docx); // 需要一个图片对象和TSDocxFile对象
|
||||
r := p.AddRun();
|
||||
r.SetText("def");
|
||||
docx.AddParagraph(p, -1);
|
||||
```
|
||||
|
||||
## 2025-6-23
|
||||
|
||||
### V1.8.0
|
||||
|
||||
Reference in New Issue
Block a user