pdf_renderer.py
57.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
"""
PDF渲染器 - 使用WeasyPrint从HTML生成PDF
支持完整的CSS样式和中文字体
"""
from __future__ import annotations
import base64
import copy
import os
import sys
import io
import re
from pathlib import Path
from typing import Any, Dict
from datetime import datetime
from loguru import logger
from ReportEngine.utils.dependency_check import (
prepare_pango_environment,
check_pango_available,
)
# 在导入WeasyPrint之前,尝试补充常见的macOS Homebrew动态库路径,
# 避免因未设置DYLD_LIBRARY_PATH而找不到pango/cairo等依赖。
if sys.platform == 'darwin':
mac_libs = [Path('/opt/homebrew/lib'), Path('/usr/local/lib')]
current = os.environ.get('DYLD_LIBRARY_PATH', '')
inserts = []
for lib in mac_libs:
if lib.exists() and str(lib) not in current.split(':'):
inserts.append(str(lib))
if inserts:
os.environ['DYLD_LIBRARY_PATH'] = ":".join(inserts + ([current] if current else []))
# Windows: 自动补充常见 GTK/Pango 运行时路径,避免 DLL 加载失败
if sys.platform.startswith('win'):
added = prepare_pango_environment()
if added:
logger.debug(f"已自动添加 GTK 运行时路径: {added}")
try:
from weasyprint import HTML, CSS
from weasyprint.text.fonts import FontConfiguration
WEASYPRINT_AVAILABLE = True
PDF_DEP_STATUS = "OK"
except (ImportError, OSError) as e:
WEASYPRINT_AVAILABLE = False
# 判断错误类型以提供更友好的提示,并尝试输出缺失依赖的详细信息
try:
_, dep_message = check_pango_available()
except Exception:
dep_message = None
if isinstance(e, OSError):
msg = dep_message or (
"PDF 导出依赖缺失(系统库未安装或环境变量未设置),"
"PDF 导出功能将不可用。其他功能不受影响。"
)
logger.warning(msg)
PDF_DEP_STATUS = msg
else:
msg = dep_message or "WeasyPrint未安装,PDF导出功能将不可用"
logger.warning(msg)
PDF_DEP_STATUS = msg
except Exception as e:
WEASYPRINT_AVAILABLE = False
PDF_DEP_STATUS = f"WeasyPrint 加载失败: {e},PDF导出功能将不可用"
logger.warning(PDF_DEP_STATUS)
from .html_renderer import HTMLRenderer
from .pdf_layout_optimizer import PDFLayoutOptimizer, PDFLayoutConfig
from .chart_to_svg import create_chart_converter
from .math_to_svg import MathToSVG
try:
from wordcloud import WordCloud
WORDCLOUD_AVAILABLE = True
except ImportError:
WORDCLOUD_AVAILABLE = False
logger = logger # ensure logger exists even before declaration
class PDFRenderer:
"""
基于WeasyPrint的PDF渲染器
- 直接从HTML生成PDF,保留所有CSS样式
- 完美支持中文字体
- 自动处理分页和布局
"""
def __init__(
self,
config: Dict[str, Any] | None = None,
layout_optimizer: PDFLayoutOptimizer | None = None
):
"""
初始化PDF渲染器
参数:
config: 渲染器配置
layout_optimizer: PDF布局优化器(可选)
"""
self.config = config or {}
self.html_renderer = HTMLRenderer(config)
self.layout_optimizer = layout_optimizer or PDFLayoutOptimizer()
if not WEASYPRINT_AVAILABLE:
raise RuntimeError(
PDF_DEP_STATUS
if 'PDF_DEP_STATUS' in globals() else
"WeasyPrint未安装,请运行: pip install weasyprint"
)
# 初始化图表转换器
try:
font_path = self._get_font_path()
self.chart_converter = create_chart_converter(font_path=str(font_path))
logger.info("图表SVG转换器初始化成功")
except Exception as e:
logger.warning(f"图表SVG转换器初始化失败: {e},将使用表格降级")
# 初始化数学公式转换器
try:
self.math_converter = MathToSVG(font_size=16, color='black')
logger.info("数学公式SVG转换器初始化成功")
except Exception as e:
logger.warning(f"数学公式SVG转换器初始化失败: {e},公式将显示为文本")
self.math_converter = None
@staticmethod
def _get_font_path() -> Path:
"""获取字体文件路径"""
# 优先使用完整字体以确保字符覆盖
fonts_dir = Path(__file__).parent / "assets" / "fonts"
# 检查完整字体
full_font = fonts_dir / "SourceHanSerifSC-Medium.otf"
if full_font.exists():
logger.info(f"使用完整字体: {full_font}")
return full_font
# 检查TTF子集字体
subset_ttf = fonts_dir / "SourceHanSerifSC-Medium-Subset.ttf"
if subset_ttf.exists():
logger.info(f"使用TTF子集字体: {subset_ttf}")
return subset_ttf
# 检查OTF子集字体
subset_otf = fonts_dir / "SourceHanSerifSC-Medium-Subset.otf"
if subset_otf.exists():
logger.info(f"使用OTF子集字体: {subset_otf}")
return subset_otf
raise FileNotFoundError(f"未找到字体文件,请检查 {fonts_dir} 目录")
def _preprocess_charts(self, document_ir: Dict[str, Any]) -> Dict[str, Any]:
"""
预处理图表:验证和修复所有图表数据
这个方法确保在转换为SVG之前,所有图表数据都是有效的。
使用与HTMLRenderer相同的验证和修复逻辑,保证PDF和HTML的一致性。
参数:
document_ir: Document IR数据
返回:
Dict[str, Any]: 修复后的Document IR(深拷贝)
"""
# 深拷贝以避免修改原始IR
ir_copy = copy.deepcopy(document_ir)
repair_stats = {
'total': 0,
'repaired': 0,
'failed': 0
}
def repair_widgets_in_blocks(blocks: list, chapter_context: Dict[str, Any] | None = None) -> None:
"""递归修复blocks中的所有widget"""
for block in blocks:
if not isinstance(block, dict):
continue
# 处理widget类型
if block.get('type') == 'widget':
# 先用HTML渲染器的容错逻辑补全字段
try:
self.html_renderer._normalize_chart_block(block, chapter_context)
except Exception as exc: # 防御性处理,避免单个图表阻断流程
logger.debug(f"预处理图表 {block.get('widgetId')} 时出错: {exc}")
widget_type = block.get('widgetType', '')
if widget_type.startswith('chart.js'):
repair_stats['total'] += 1
# 使用HTMLRenderer的验证器和修复器
validation = self.html_renderer.chart_validator.validate(block)
if not validation.is_valid:
logger.debug(f"图表 {block.get('widgetId')} 需要修复: {validation.errors}")
# 尝试修复
repair_result = self.html_renderer.chart_repairer.repair(block, validation)
if repair_result.success and repair_result.repaired_block:
# 更新block内容(在副本中)
block.update(repair_result.repaired_block)
repair_stats['repaired'] += 1
logger.debug(
f"图表 {block.get('widgetId')} 已修复 "
f"(方法: {repair_result.method})"
)
else:
repair_stats['failed'] += 1
reason = self.html_renderer._format_chart_error_reason(validation)
block["_chart_renderable"] = False
block["_chart_error_reason"] = reason
self.html_renderer._note_chart_failure(
self.html_renderer._chart_cache_key(block),
reason
)
logger.warning(
f"图表 {block.get('widgetId')} 修复失败,将使用占位提示: {reason}"
)
# 递归处理嵌套的blocks
nested_blocks = block.get('blocks')
if isinstance(nested_blocks, list):
repair_widgets_in_blocks(nested_blocks, chapter_context)
# 处理列表项
if block.get('type') == 'list':
items = block.get('items', [])
for item in items:
if isinstance(item, list):
repair_widgets_in_blocks(item, chapter_context)
# 处理表格单元格
if block.get('type') == 'table':
rows = block.get('rows', [])
for row in rows:
cells = row.get('cells', [])
for cell in cells:
cell_blocks = cell.get('blocks', [])
if isinstance(cell_blocks, list):
repair_widgets_in_blocks(cell_blocks, chapter_context)
# 处理所有章节
chapters = ir_copy.get('chapters', [])
for chapter in chapters:
blocks = chapter.get('blocks', [])
repair_widgets_in_blocks(blocks, chapter)
# 输出统计信息
if repair_stats['total'] > 0:
logger.info(
f"PDF图表预处理完成: "
f"总计 {repair_stats['total']} 个图表, "
f"修复 {repair_stats['repaired']} 个, "
f"失败 {repair_stats['failed']} 个"
)
return ir_copy
def _convert_charts_to_svg(self, document_ir: Dict[str, Any]) -> Dict[str, str]:
"""
将document_ir中的所有图表转换为SVG
参数:
document_ir: Document IR数据
返回:
Dict[str, str]: widgetId到SVG字符串的映射
"""
svg_map = {}
if not hasattr(self, 'chart_converter') or not self.chart_converter:
logger.warning("图表转换器未初始化,跳过图表转换")
return svg_map
# 遍历所有章节
chapters = document_ir.get('chapters', [])
for chapter in chapters:
blocks = chapter.get('blocks', [])
self._extract_and_convert_widgets(blocks, svg_map)
logger.info(f"成功转换 {len(svg_map)} 个图表为SVG")
return svg_map
def _convert_wordclouds_to_images(self, document_ir: Dict[str, Any]) -> Dict[str, str]:
"""
将document_ir中的词云widget转换为PNG并返回data URI映射
"""
img_map: Dict[str, str] = {}
if not WORDCLOUD_AVAILABLE:
logger.debug("wordcloud库未安装,词云将使用表格兜底")
return img_map
# 遍历所有章节
chapters = document_ir.get('chapters', [])
for chapter in chapters:
blocks = chapter.get('blocks', [])
self._extract_wordcloud_widgets(blocks, img_map)
if img_map:
logger.info(f"成功转换 {len(img_map)} 个词云为图片")
return img_map
def _extract_and_convert_widgets(
self,
blocks: list,
svg_map: Dict[str, str]
) -> None:
"""
递归遍历blocks,找到所有widget并转换为SVG
参数:
blocks: block列表
svg_map: 用于存储转换结果的字典
"""
for block in blocks:
if not isinstance(block, dict):
continue
block_type = block.get('type')
# 处理widget类型
if block_type == 'widget':
widget_id = block.get('widgetId')
widget_type = block.get('widgetType', '')
# 只处理chart.js类型的widget
if widget_id and widget_type.startswith('chart.js'):
widget_type_lower = widget_type.lower()
props = block.get('props')
props_type = str(props.get('type') or '').lower() if isinstance(props, dict) else ''
if 'wordcloud' in widget_type_lower or 'wordcloud' in props_type:
logger.debug(f"检测到词云 {widget_id},跳过SVG转换并使用图片注入流程")
continue
failed, fail_reason = self.html_renderer._has_chart_failure(block)
if block.get("_chart_renderable") is False or failed:
logger.debug(
f"跳过转换失败的图表 {widget_id}"
f"{f',原因: {fail_reason}' if fail_reason else ''}"
)
continue
try:
svg_content = self.chart_converter.convert_widget_to_svg(
block,
width=800,
height=500,
dpi=100
)
if svg_content:
svg_map[widget_id] = svg_content
logger.debug(f"图表 {widget_id} 转换为SVG成功")
else:
logger.warning(f"图表 {widget_id} 转换为SVG失败")
except Exception as e:
logger.error(f"转换图表 {widget_id} 时出错: {e}")
# 递归处理嵌套的blocks
nested_blocks = block.get('blocks')
if isinstance(nested_blocks, list):
self._extract_and_convert_widgets(nested_blocks, svg_map)
# 处理列表项
if block_type == 'list':
items = block.get('items', [])
for item in items:
if isinstance(item, list):
self._extract_and_convert_widgets(item, svg_map)
# 处理表格单元格
if block_type == 'table':
rows = block.get('rows', [])
for row in rows:
cells = row.get('cells', [])
for cell in cells:
cell_blocks = cell.get('blocks', [])
if isinstance(cell_blocks, list):
self._extract_and_convert_widgets(cell_blocks, svg_map)
def _extract_wordcloud_widgets(
self,
blocks: list,
img_map: Dict[str, str]
) -> None:
"""
递归遍历blocks,找到词云widget并生成图片
"""
for block in blocks:
if not isinstance(block, dict):
continue
block_type = block.get('type')
if block_type == 'widget':
widget_id = block.get('widgetId')
widget_type = block.get('widgetType', '')
props = block.get('props')
props_type = str(props.get('type') or '') if isinstance(props, dict) else ''
is_wordcloud = (
isinstance(widget_type, str) and 'wordcloud' in widget_type.lower()
) or ('wordcloud' in props_type.lower())
if widget_id and is_wordcloud:
try:
data_uri = self._generate_wordcloud_image(block)
if data_uri:
img_map[widget_id] = data_uri
logger.debug(f"词云 {widget_id} 转换为图片成功")
except Exception as exc:
logger.warning(f"生成词云图片失败 {widget_id}: {exc}")
nested_blocks = block.get('blocks')
if isinstance(nested_blocks, list):
self._extract_wordcloud_widgets(nested_blocks, img_map)
if block_type == 'list':
items = block.get('items', [])
for item in items:
if isinstance(item, list):
self._extract_wordcloud_widgets(item, img_map)
if block_type == 'table':
rows = block.get('rows', [])
for row in rows:
cells = row.get('cells', [])
for cell in cells:
cell_blocks = cell.get('blocks', [])
if isinstance(cell_blocks, list):
self._extract_wordcloud_widgets(cell_blocks, img_map)
def _normalize_wordcloud_items(self, block: Dict[str, Any]) -> list:
"""
从widget block中提取词云数据
"""
props = block.get('props') or {}
raw_items = props.get('data')
if not isinstance(raw_items, list):
return []
normalized = []
for item in raw_items:
if not isinstance(item, dict):
continue
word = item.get('word') or item.get('text') or item.get('label')
if not word:
continue
weight = item.get('weight')
try:
weight_val = float(weight)
if weight_val <= 0:
weight_val = 1.0
except (TypeError, ValueError):
weight_val = 1.0
category = (item.get('category') or '').lower()
normalized.append({'word': str(word), 'weight': weight_val, 'category': category})
return normalized
def _generate_wordcloud_image(self, block: Dict[str, Any]) -> str | None:
"""
生成词云PNG并返回data URI
"""
items = self._normalize_wordcloud_items(block)
if not items:
return None
# 使用频次形式馈入wordcloud库
frequencies = {}
for item in items:
weight = item['weight']
# 兼容权重为0-1的小数,放大以体现差异
freq = weight * 100 if 0 < weight <= 1.5 else weight
frequencies[item['word']] = max(1, freq)
font_path = str(self._get_font_path())
wc = WordCloud(
width=1000,
height=360,
background_color="white",
font_path=font_path,
prefer_horizontal=0.98,
random_state=42,
max_words=180,
collocations=False,
)
wc.generate_from_frequencies(frequencies)
buffer = io.BytesIO()
wc.to_image().save(buffer, format='PNG')
encoded = base64.b64encode(buffer.getvalue()).decode('ascii')
return f"data:image/png;base64,{encoded}"
def _convert_math_to_svg(self, document_ir: Dict[str, Any]) -> Dict[str, str]:
"""
将document_ir中的所有数学公式转换为SVG
参数:
document_ir: Document IR数据
返回:
Dict[str, str]: 公式块ID到SVG字符串的映射
"""
svg_map = {}
if not hasattr(self, 'math_converter') or not self.math_converter:
logger.warning("数学公式转换器未初始化,跳过公式转换")
return svg_map
# 遍历所有章节,保持全局计数器避免ID重复
block_counter = [0]
chapters = document_ir.get('chapters', [])
for chapter in chapters:
blocks = chapter.get('blocks', [])
self._extract_and_convert_math_blocks(blocks, svg_map, block_counter)
logger.info(f"成功转换 {len(svg_map)} 个数学公式为SVG")
return svg_map
def _extract_and_convert_math_blocks(
self,
blocks: list,
svg_map: Dict[str, str],
block_counter: list = None
) -> None:
"""
递归遍历blocks,找到所有math块并转换为SVG
参数:
blocks: block列表
svg_map: 用于存储转换结果的字典
block_counter: 用于生成唯一ID的计数器
"""
if block_counter is None:
block_counter = [0]
def _extract_inline_math_from_inlines(inlines: list):
"""从段落内联节点中提取数学公式"""
if not isinstance(inlines, list):
return
for run in inlines:
if not isinstance(run, dict):
continue
marks = run.get('marks') or []
math_mark = next((m for m in marks if m.get('type') == 'math'), None)
if math_mark:
# 仅单个math mark
raw = math_mark.get('value') or run.get('text') or ''
latex = self._normalize_latex(raw)
# 行内mark统一按inline处理,避免误将行内公式当成display
is_display = False
if not latex:
continue
block_counter[0] += 1
math_id = run.get('mathId') or f"math-inline-{block_counter[0]}"
run['mathId'] = math_id
try:
svg_content = (
self.math_converter.convert_display_to_svg(latex)
if is_display else
self.math_converter.convert_inline_to_svg(latex)
)
if svg_content:
svg_map[math_id] = svg_content
logger.debug(f"公式 {math_id} 转换为SVG成功")
else:
logger.warning(f"公式 {math_id} 转换为SVG失败: {latex[:50]}...")
except Exception as exc:
logger.error(f"转换内联公式 {latex[:50]}... 时出错: {exc}")
continue
# 无math mark,尝试解析文本中的多个公式
text_val = run.get('text')
if not isinstance(text_val, str):
continue
segments = self._find_all_math_in_text(text_val)
if not segments:
continue
ids_for_html: list[str] = []
for idx, (latex, is_display) in enumerate(segments, start=1):
if not latex:
continue
block_counter[0] += 1
math_id = f"auto-math-{block_counter[0]}"
ids_for_html.append(math_id)
try:
svg_content = (
self.math_converter.convert_display_to_svg(latex)
if is_display else
self.math_converter.convert_inline_to_svg(latex)
)
if svg_content:
svg_map[math_id] = svg_content
logger.debug(f"公式 {math_id} 转换为SVG成功")
else:
logger.warning(f"公式 {math_id} 转换为SVG失败: {latex[:50]}...")
except Exception as exc:
logger.error(f"转换内联公式 {latex[:50]}... 时出错: {exc}")
if ids_for_html:
# 将ID列表写回run,便于HTML渲染时使用相同ID(顺序对应segments)
run['mathIds'] = ids_for_html
for block in blocks:
if not isinstance(block, dict):
continue
block_type = block.get('type')
# 处理math类型
if block_type == 'math':
latex = self._normalize_latex(block.get('latex', ''))
if latex:
block_counter[0] += 1
math_id = f"math-block-{block_counter[0]}"
try:
svg_content = self.math_converter.convert_display_to_svg(latex)
if svg_content:
svg_map[math_id] = svg_content
# 将ID添加到block中,以便后续注入时识别
block['mathId'] = math_id
logger.debug(f"公式 {math_id} 转换为SVG成功")
else:
logger.warning(f"公式 {math_id} 转换为SVG失败: {latex[:50]}...")
except Exception as e:
logger.error(f"转换公式 {latex[:50]}... 时出错: {e}")
else:
# 提取段落、表格等内部的内联公式
inlines = block.get('inlines')
if inlines:
_extract_inline_math_from_inlines(inlines)
# 递归处理嵌套的blocks
nested_blocks = block.get('blocks')
if isinstance(nested_blocks, list):
self._extract_and_convert_math_blocks(nested_blocks, svg_map, block_counter)
# 处理列表项
if block_type == 'list':
items = block.get('items', [])
for item in items:
if isinstance(item, list):
self._extract_and_convert_math_blocks(item, svg_map, block_counter)
# 处理表格单元格
if block_type == 'table':
rows = block.get('rows', [])
for row in rows:
cells = row.get('cells', [])
for cell in cells:
cell_blocks = cell.get('blocks', [])
if isinstance(cell_blocks, list):
self._extract_and_convert_math_blocks(cell_blocks, svg_map, block_counter)
# 处理callout内部的blocks
if block_type == 'callout':
callout_blocks = block.get('blocks', [])
if isinstance(callout_blocks, list):
self._extract_and_convert_math_blocks(callout_blocks, svg_map, block_counter)
def _inject_svg_into_html(self, html: str, svg_map: Dict[str, str]) -> str:
"""
将SVG内容直接注入到HTML中(不使用JavaScript)
参数:
html: 原始HTML内容
svg_map: widgetId到SVG内容的映射
返回:
str: 注入SVG后的HTML
"""
if not svg_map:
return html
import re
# 为每个widgetId查找对应的canvas并替换为SVG
for widget_id, svg_content in svg_map.items():
# 清理SVG内容(移除XML声明,因为SVG将嵌入HTML)
svg_content = re.sub(r'<\?xml[^>]+\?>', '', svg_content)
svg_content = re.sub(r'<!DOCTYPE[^>]+>', '', svg_content)
svg_content = svg_content.strip()
# 创建SVG容器HTML
svg_html = f'<div class="chart-svg-container">{svg_content}</div>'
# 查找包含此widgetId的配置脚本(限制在同一个</script>内,避免跨标签误配)
config_pattern = rf'<script[^>]+id="([^"]+)"[^>]*>(?:(?!</script>).)*?"widgetId"\s*:\s*"{re.escape(widget_id)}"(?:(?!</script>).)*?</script>'
match = re.search(config_pattern, html, re.DOTALL)
if match:
config_id = match.group(1)
# 查找对应的canvas元素
# 格式: <canvas id="chart-N" data-config-id="chart-config-N"></canvas>
canvas_pattern = rf'<canvas[^>]+data-config-id="{re.escape(config_id)}"[^>]*></canvas>'
# 【修复】替换canvas为SVG,使用lambda避免反斜杠转义问题
html, replaced = re.subn(canvas_pattern, lambda m: svg_html, html, count=1)
if replaced:
logger.debug(f"已替换图表 {widget_id} 的canvas为SVG")
else:
logger.warning(f"未找到图表 {widget_id} 的canvas进行替换")
# 将对应fallback标记为隐藏,避免PDF中出现重复表格
fallback_pattern = rf'<div class="chart-fallback"([^>]*data-widget-id="{re.escape(widget_id)}"[^>]*)>'
def _hide_fallback(m: re.Match) -> str:
"""为匹配到的图表fallback添加隐藏类,防止PDF中重复渲染"""
tag = m.group(0)
if 'svg-hidden' in tag:
return tag
return tag.replace('chart-fallback"', 'chart-fallback svg-hidden"', 1)
html = re.sub(fallback_pattern, _hide_fallback, html, count=1)
else:
logger.warning(f"未找到图表 {widget_id} 对应的配置脚本")
return html
@staticmethod
def _normalize_latex(raw: Any) -> str:
"""去除外层数学定界符,兼容 $...$、$$...$$、\\(\\)、\\[\\] 等格式"""
if not isinstance(raw, str):
return ""
latex = raw.strip()
patterns = [
r'^\$\$(.*)\$\$$',
r'^\$(.*)\$$',
r'^\\\[(.*)\\\]$',
r'^\\\((.*)\\\)$',
]
for pat in patterns:
m = re.match(pat, latex, re.DOTALL)
if m:
latex = m.group(1).strip()
break
# 清理控制字符、防止mathtext解析失败
latex = re.sub(r'[\x00-\x1f\x7f]', '', latex)
# 常见兼容:\tfrac/\dfrac -> \frac
latex = latex.replace(r'\tfrac', r'\frac').replace(r'\dfrac', r'\frac')
return latex
@staticmethod
def _find_first_math_in_text(text: Any) -> tuple[str, bool] | None:
"""从纯文本中提取首个数学片段,返回(内容, 是否display)"""
if not isinstance(text, str):
return None
pattern = re.compile(r'\$\$(.+?)\$\$|\$(.+?)\$|\\\((.+?)\\\)|\\\[(.+?)\\\]', re.S)
matches = list(pattern.finditer(text))
if not matches:
return None
m = matches[0]
raw = next(g for g in m.groups() if g is not None)
latex = raw.strip()
is_display_raw = bool(m.group(1) or m.group(4)) # $$ or \[ \]
is_standalone = (
len(matches) == 1 and
not text[:m.start()].strip() and
not text[m.end():].strip()
)
return latex, bool(is_display_raw and is_standalone)
@staticmethod
def _find_all_math_in_text(text: Any) -> list[tuple[str, bool]]:
"""从纯文本中提取所有数学片段,返回[(内容, 是否display)]"""
if not isinstance(text, str):
return []
pattern = re.compile(r'\$\$(.+?)\$\$|\$(.+?)\$|\\\((.+?)\\\)|\\\[(.+?)\\\]', re.S)
results = []
matches = list(pattern.finditer(text))
if not matches:
return results
total = len(matches)
for m in matches:
raw = next(g for g in m.groups() if g is not None)
latex = raw.strip()
is_display_raw = bool(m.group(1) or m.group(4))
is_standalone = (
total == 1 and
not text[:m.start()].strip() and
not text[m.end():].strip()
)
is_display = is_display_raw and is_standalone
results.append((latex, is_display))
return results
def _inject_wordcloud_images(self, html: str, img_map: Dict[str, str]) -> str:
"""
将词云PNG data URI注入HTML,替换对应canvas
"""
if not img_map:
return html
import re
for widget_id, data_uri in img_map.items():
img_html = (
f'<div class="chart-svg-container wordcloud-img">'
f'<img src="{data_uri}" alt="词云" />'
f'</div>'
)
config_pattern = rf'<script[^>]+id="([^"]+)"[^>]*>(?:(?!</script>).)*?"widgetId"\s*:\s*"{re.escape(widget_id)}"(?:(?!</script>).)*?</script>'
match = re.search(config_pattern, html, re.DOTALL)
if not match:
logger.debug(f"未找到词云 {widget_id} 的配置脚本,跳过注入")
continue
config_id = match.group(1)
canvas_pattern = rf'<canvas[^>]+data-config-id="{re.escape(config_id)}"[^>]*></canvas>'
html, replaced = re.subn(canvas_pattern, lambda m: img_html, html, count=1)
if replaced:
logger.debug(f"已替换词云 {widget_id} 的canvas为PNG图片")
else:
logger.warning(f"未找到词云 {widget_id} 的canvas进行替换")
fallback_pattern = rf'<div class="chart-fallback"([^>]*data-widget-id="{re.escape(widget_id)}"[^>]*)>'
def _hide_fallback(m: re.Match) -> str:
"""匹配词云表格兜底并打上隐藏标记,避免SVG/图片重复显示"""
tag = m.group(0)
if 'svg-hidden' in tag:
return tag
return tag.replace('chart-fallback"', 'chart-fallback svg-hidden"', 1)
html = re.sub(fallback_pattern, _hide_fallback, html, count=1)
return html
def _inject_math_svg_into_html(self, html: str, svg_map: Dict[str, str]) -> str:
"""
将数学公式SVG内容注入到HTML中
参数:
html: 原始HTML内容
svg_map: 公式ID到SVG内容的映射
返回:
str: 注入SVG后的HTML
"""
if not svg_map:
return html
import re
# 优先替换内联公式,再替换块级公式,保持顺序一致
for math_id, svg_content in svg_map.items():
# 清理SVG内容(移除XML声明,因为SVG将嵌入HTML)
svg_content = re.sub(r'<\?xml[^>]+\?>', '', svg_content)
svg_content = re.sub(r'<!DOCTYPE[^>]+>', '', svg_content)
svg_content = svg_content.strip()
svg_block_html = f'<div class="math-svg-container">{svg_content}</div>'
svg_inline_html = f'<span class="math-svg-inline">{svg_content}</span>'
replaced = False
# 优先按 data-math-id 精确替换
inline_pattern = rf'<span class="math-inline"[^>]*data-math-id="{re.escape(math_id)}"[^>]*>.*?</span>'
if re.search(inline_pattern, html, re.DOTALL):
html = re.sub(inline_pattern, lambda m: svg_inline_html, html, count=1)
replaced = True
else:
block_pattern = rf'<div class="math-block"[^>]*data-math-id="{re.escape(math_id)}"[^>]*>.*?</div>'
if re.search(block_pattern, html, re.DOTALL):
html = re.sub(block_pattern, lambda m: svg_block_html, html, count=1)
replaced = True
# 如果没有找到特定ID,按出现顺序兜底替换
if not replaced:
html, sub_inline = re.subn(r'<span class="math-inline">[^<]*</span>', lambda m: svg_inline_html, html, count=1)
if sub_inline:
replaced = True
else:
html, sub_block = re.subn(r'<div class="math-block">\$\$[^$]*\$\$</div>', lambda m: svg_block_html, html, count=1)
if sub_block:
replaced = True
if replaced:
logger.debug(f"已替换公式 {math_id} 为SVG")
return html
def _get_pdf_html(
self,
document_ir: Dict[str, Any],
optimize_layout: bool = True
) -> str:
"""
生成适用于PDF的HTML内容
- 移除交互式元素(按钮、导航等)
- 添加PDF专用样式
- 嵌入字体文件
- 应用布局优化
- 将图表转换为SVG矢量图形
参数:
document_ir: Document IR数据
optimize_layout: 是否启用布局优化
返回:
str: 优化后的HTML内容
"""
# 如果启用布局优化,先分析文档并生成优化配置
if optimize_layout:
logger.info("启用PDF布局优化...")
layout_config = self.layout_optimizer.optimize_for_document(document_ir)
# 保存优化日志
log_dir = Path('logs/pdf_layouts')
log_dir.mkdir(parents=True, exist_ok=True)
log_file = log_dir / f"layout_{datetime.now().strftime('%Y%m%d_%H%M%S')}.json"
# 保存配置和优化日志
optimization_log = self.layout_optimizer._log_optimization(
self.layout_optimizer._analyze_document(document_ir),
layout_config
)
self.layout_optimizer.config = layout_config
self.layout_optimizer.save_config(log_file, optimization_log)
else:
layout_config = self.layout_optimizer.config
# 关键修复:先预处理图表,确保数据有效
logger.info("预处理图表数据...")
preprocessed_ir = self._preprocess_charts(document_ir)
# 转换图表为SVG(使用预处理后的IR)
logger.info("开始转换图表为SVG矢量图形...")
svg_map = self._convert_charts_to_svg(preprocessed_ir)
# 转换词云为PNG
logger.info("开始转换词云为图片...")
wordcloud_map = self._convert_wordclouds_to_images(preprocessed_ir)
# 转换数学公式为SVG
logger.info("开始转换数学公式为SVG矢量图形...")
math_svg_map = self._convert_math_to_svg(preprocessed_ir)
# 使用HTML渲染器生成基础HTML(使用预处理后的IR,以便复用mathId等标记)
html = self.html_renderer.render(preprocessed_ir)
# 注入图表SVG
if svg_map:
html = self._inject_svg_into_html(html, svg_map)
logger.info(f"已注入 {len(svg_map)} 个SVG图表")
if wordcloud_map:
html = self._inject_wordcloud_images(html, wordcloud_map)
logger.info(f"已注入 {len(wordcloud_map)} 个词云图片")
# 注入数学公式SVG
if math_svg_map:
html = self._inject_math_svg_into_html(html, math_svg_map)
logger.info(f"已注入 {len(math_svg_map)} 个SVG公式")
# 获取字体路径并转换为base64(用于嵌入)
font_path = self._get_font_path()
font_data = font_path.read_bytes()
font_base64 = base64.b64encode(font_data).decode('ascii')
# 判断字体格式
font_format = 'opentype' if font_path.suffix == '.otf' else 'truetype'
# 生成优化后的CSS
optimized_css = self.layout_optimizer.generate_pdf_css()
# 添加PDF专用CSS
pdf_css = f"""
<style>
/* PDF专用字体嵌入 */
@font-face {{
font-family: 'SourceHanSerif';
src: url(data:font/{font_format};base64,{font_base64}) format('{font_format}');
font-weight: normal;
font-style: normal;
}}
/* 强制所有文本使用思源宋体 */
body, h1, h2, h3, h4, h5, h6, p, li, td, th, div, span {{
font-family: 'SourceHanSerif', serif !important;
}}
/* PDF专用样式调整 */
.report-header {{
display: none !important;
}}
.no-print {{
display: none !important;
}}
body {{
background: white !important;
}}
/* ========== 修复 WeasyPrint CSS 变量渐变兼容性问题 ========== */
/* WeasyPrint 不支持在 linear-gradient 中使用 var(),需要用静态值覆盖 */
/* 覆盖按钮渐变 */
.action-btn {{
background: linear-gradient(135deg, #4a90e2 0%, #17a2b8 100%) !important;
}}
/* 覆盖进度条渐变 */
.export-progress::after {{
background: linear-gradient(90deg, #4a90e2, #17a2b8) !important;
}}
/* 覆盖 PEST 卡片标题渐变 */
.pest-card__title {{
background: linear-gradient(135deg, #8e44ad, #2980b9) !important;
-webkit-background-clip: text !important;
-webkit-text-fill-color: transparent !important;
background-clip: text !important;
}}
/* 覆盖 PEST 条带指示器渐变 */
.pest-strip__indicator.political {{
background: linear-gradient(180deg, #8e44ad, rgba(142,68,173,0.8)) !important;
}}
.pest-strip__indicator.economic {{
background: linear-gradient(180deg, #16a085, rgba(22,160,133,0.8)) !important;
}}
.pest-strip__indicator.social {{
background: linear-gradient(180deg, #e84393, rgba(232,67,147,0.8)) !important;
}}
.pest-strip__indicator.technological {{
background: linear-gradient(180deg, #2980b9, rgba(41,128,185,0.8)) !important;
}}
/* 覆盖 PEST 条带背景(原来使用 var(--pest-strip-*-bg),包含渐变和变量) */
.pest-strip {{
background: #ffffff !important;
}}
.pest-strip.political {{
background: linear-gradient(90deg, rgba(142,68,173,0.08), rgba(255,255,255,0.85)), #ffffff !important;
border-color: rgba(142,68,173,0.4) !important;
}}
.pest-strip.economic {{
background: linear-gradient(90deg, rgba(22,160,133,0.08), rgba(255,255,255,0.85)), #ffffff !important;
border-color: rgba(22,160,133,0.4) !important;
}}
.pest-strip.social {{
background: linear-gradient(90deg, rgba(232,67,147,0.08), rgba(255,255,255,0.85)), #ffffff !important;
border-color: rgba(232,67,147,0.4) !important;
}}
.pest-strip.technological {{
background: linear-gradient(90deg, rgba(41,128,185,0.08), rgba(255,255,255,0.85)), #ffffff !important;
border-color: rgba(41,128,185,0.4) !important;
}}
/* 覆盖 SWOT 卡片背景(原来使用 var(--swot-card-bg),包含渐变和变量) */
.swot-card {{
background: linear-gradient(135deg, rgba(76,132,255,0.04), rgba(28,127,110,0.06)), #ffffff !important;
}}
/* 覆盖 SWOT 单元格背景(原来使用 var(--swot-cell-*-bg),包含渐变和变量) */
.swot-cell {{
background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5)) !important;
}}
.swot-cell.strength {{
background: linear-gradient(135deg, rgba(28,127,110,0.07), rgba(255,255,255,0.78)), #ffffff !important;
border-color: rgba(28,127,110,0.35) !important;
}}
.swot-cell.weakness {{
background: linear-gradient(135deg, rgba(192,57,43,0.07), rgba(255,255,255,0.78)), #ffffff !important;
border-color: rgba(192,57,43,0.35) !important;
}}
.swot-cell.opportunity {{
background: linear-gradient(135deg, rgba(31,90,179,0.07), rgba(255,255,255,0.78)), #ffffff !important;
border-color: rgba(31,90,179,0.35) !important;
}}
.swot-cell.threat {{
background: linear-gradient(135deg, rgba(179,107,22,0.07), rgba(255,255,255,0.78)), #ffffff !important;
border-color: rgba(179,107,22,0.35) !important;
}}
/* 覆盖 SWOT 图例项和药丸(使用静态颜色) */
.swot-legend__item.strength, .swot-pill.strength {{
background: #1c7f6e !important;
}}
.swot-legend__item.weakness, .swot-pill.weakness {{
background: #c0392b !important;
}}
.swot-legend__item.opportunity, .swot-pill.opportunity {{
background: #1f5ab3 !important;
}}
.swot-legend__item.threat, .swot-pill.threat {{
background: #b36b16 !important;
}}
/* 覆盖其他使用 var() 的元素 */
.swot-item {{
background: rgba(255,255,255,0.92) !important;
}}
.swot-tag {{
background: rgba(0,0,0,0.04) !important;
}}
.swot-empty {{
border-color: #e0e0e0 !important;
}}
/* 覆盖 PEST 卡片背景 */
.pest-card {{
background: linear-gradient(145deg, rgba(142,68,173,0.03), rgba(22,160,133,0.04)), #ffffff !important;
}}
/* 覆盖图表卡片错误状态渐变 */
.chart-card.chart-card--error {{
background: linear-gradient(135deg, rgba(0,0,0,0.015), rgba(0,0,0,0.04)) !important;
}}
/* 覆盖词云徽章渐变 */
.wordcloud-badge {{
background: linear-gradient(135deg, rgba(74, 144, 226, 0.14) 0%, rgba(74, 144, 226, 0.24) 100%) !important;
}}
/* 覆盖英雄区域渐变 */
.hero-section {{
background: linear-gradient(135deg, rgba(0,123,255,0.1), rgba(23,162,184,0.1)) !important;
}}
/* ========== 覆盖 hero-actions 按钮样式(解决双层边框问题) ========== */
/* 完全重置 button 和 ghost-btn 样式,避免浏览器默认样式干扰 */
.hero-actions {{
display: flex !important;
flex-wrap: wrap !important;
gap: 8px !important;
margin-top: 14px !important;
padding: 0 !important;
}}
.hero-actions button,
.hero-actions .ghost-btn,
button.ghost-btn {{
display: inline-flex !important;
align-items: center !important;
justify-content: flex-start !important;
background: transparent !important;
border: 1px solid rgba(0, 0, 0, 0.22) !important;
border-radius: 999px !important;
padding: 8px 16px !important;
font-size: 12px !important;
color: #222 !important;
width: auto !important;
height: auto !important;
white-space: normal !important;
line-height: 1.4 !important;
text-align: left !important;
box-shadow: none !important;
cursor: default !important;
-webkit-appearance: none !important;
-moz-appearance: none !important;
appearance: none !important;
outline: none !important;
outline-width: 0 !important;
outline-style: none !important;
word-break: break-word !important;
max-width: 100% !important;
box-sizing: border-box !important;
margin: 0 !important;
font-family: inherit !important;
text-decoration: none !important;
border-width: 1px !important;
border-style: solid !important;
}}
/* SVG图表容器样式 */
.chart-svg-container {{
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
}}
.chart-svg-container svg {{
max-width: 100%;
height: auto;
}}
.chart-svg-container img {{
max-width: 100%;
height: auto;
}}
/* 数学公式SVG容器样式 */
.math-svg-container {{
width: 100%;
height: auto;
display: flex;
justify-content: center;
align-items: center;
margin: 20px 0;
}}
.math-svg-container svg {{
max-width: 100%;
height: auto;
}}
/* 隐藏原始的math-block(因为已被SVG替换) */
.math-block {{
display: none !important;
}}
/* 当对应SVG成功注入时隐藏fallback表格,失败时继续显示兜底数据 */
.chart-fallback.svg-hidden {{
display: none !important;
}}
/* 确保chart-container显示(用于放置SVG) */
.chart-container {{
display: block !important;
min-height: 400px;
}}
/* ========== SWOT PDF表格布局 ========== */
/* 核心策略:PDF中使用表格形式而非卡片形式,更适合分页 */
/* 隐藏HTML卡片布局,显示PDF表格布局 */
.swot-card--html {{
display: none !important;
}}
.swot-pdf-wrapper {{
display: block !important;
margin: 24px 0;
}}
/* PDF表格整体样式 */
.swot-pdf-table {{
width: 100% !important;
border-collapse: collapse !important;
font-size: 11px !important;
table-layout: fixed !important;
background: white;
}}
/* 表格标题 */
.swot-pdf-caption {{
caption-side: top !important;
text-align: left !important;
font-size: 16px !important;
font-weight: 700 !important;
padding: 12px 0 !important;
color: #1a1a1a !important;
border-bottom: 2px solid #333 !important;
margin-bottom: 8px !important;
}}
/* 表头样式 */
.swot-pdf-thead {{
break-after: avoid !important;
page-break-after: avoid !important;
}}
.swot-pdf-thead th {{
background: #f0f0f0 !important;
padding: 10px 8px !important;
text-align: left !important;
font-weight: 600 !important;
border: 1px solid #ccc !important;
color: #333 !important;
font-size: 11px !important;
}}
.swot-pdf-th-quadrant {{ width: 70px !important; }}
.swot-pdf-th-num {{ width: 40px !important; text-align: center !important; }}
.swot-pdf-th-title {{ width: 20% !important; }}
.swot-pdf-th-detail {{ width: auto !important; }}
.swot-pdf-th-tags {{ width: 80px !important; text-align: center !important; }}
/* 摘要行 */
.swot-pdf-summary {{
padding: 10px 12px !important;
background: #f8f8f8 !important;
color: #555 !important;
font-style: italic !important;
border: 1px solid #ccc !important;
font-size: 11px !important;
}}
/* 每个象限区块 - 核心分页控制 */
.swot-pdf-quadrant {{
break-inside: avoid !important;
page-break-inside: avoid !important;
}}
/* 允许在不同象限之间分页 */
.swot-pdf-quadrant + .swot-pdf-quadrant {{
break-before: auto;
page-break-before: auto;
}}
/* 象限标签单元格 */
.swot-pdf-quadrant-label {{
text-align: center !important;
vertical-align: middle !important;
padding: 12px 6px !important;
font-weight: 700 !important;
border: 1px solid #ccc !important;
width: 70px !important;
}}
/* 四个象限的颜色主题 */
.swot-pdf-quadrant-label.swot-pdf-strength {{
background: #e8f5f2 !important;
color: #1c7f6e !important;
border-left: 4px solid #1c7f6e !important;
}}
.swot-pdf-quadrant-label.swot-pdf-weakness {{
background: #fdeaea !important;
color: #c0392b !important;
border-left: 4px solid #c0392b !important;
}}
.swot-pdf-quadrant-label.swot-pdf-opportunity {{
background: #e8f0fa !important;
color: #1f5ab3 !important;
border-left: 4px solid #1f5ab3 !important;
}}
.swot-pdf-quadrant-label.swot-pdf-threat {{
background: #fdf3e6 !important;
color: #b36b16 !important;
border-left: 4px solid #b36b16 !important;
}}
/* 象限代码字母 */
.swot-pdf-code {{
display: block !important;
font-size: 20px !important;
font-weight: 800 !important;
margin-bottom: 2px !important;
}}
/* 象限标签文字 */
.swot-pdf-label-text {{
display: block !important;
font-size: 9px !important;
font-weight: 600 !important;
letter-spacing: 0.02em !important;
}}
/* 数据行 */
.swot-pdf-item-row td {{
padding: 8px 6px !important;
border: 1px solid #ddd !important;
vertical-align: top !important;
font-size: 11px !important;
line-height: 1.4 !important;
}}
/* 行背景色 */
.swot-pdf-item-row.swot-pdf-strength td {{ background: #f7fbfa !important; }}
.swot-pdf-item-row.swot-pdf-weakness td {{ background: #fef9f9 !important; }}
.swot-pdf-item-row.swot-pdf-opportunity td {{ background: #f7f9fc !important; }}
.swot-pdf-item-row.swot-pdf-threat td {{ background: #fdfbf7 !important; }}
/* 序号单元格 */
.swot-pdf-item-num {{
text-align: center !important;
font-weight: 600 !important;
color: #888 !important;
width: 40px !important;
}}
/* 要点标题 */
.swot-pdf-item-title {{
font-weight: 600 !important;
color: #222 !important;
}}
/* 详情说明 */
.swot-pdf-item-detail {{
color: #444 !important;
line-height: 1.5 !important;
}}
/* 标签单元格 */
.swot-pdf-item-tags {{
text-align: center !important;
}}
/* 标签样式 */
.swot-pdf-tag {{
display: inline-block !important;
padding: 2px 6px !important;
border-radius: 3px !important;
font-size: 9px !important;
background: #e9ecef !important;
color: #495057 !important;
margin: 1px !important;
}}
.swot-pdf-tag--score {{
background: #fff3cd !important;
color: #856404 !important;
}}
/* 空数据提示 */
.swot-pdf-empty {{
text-align: center !important;
color: #999 !important;
font-style: italic !important;
}}
/* ========== PEST PDF表格布局 ========== */
/* 核心策略:PDF中使用表格形式而非卡片形式,更适合分页 */
/* 隐藏HTML卡片布局,显示PDF表格布局 */
.pest-card--html {{
display: none !important;
}}
.pest-pdf-wrapper {{
display: block !important;
margin: 24px 0;
}}
/* PDF表格整体样式 */
.pest-pdf-table {{
width: 100% !important;
border-collapse: collapse !important;
font-size: 11px !important;
table-layout: fixed !important;
background: white;
}}
/* 表格标题 */
.pest-pdf-caption {{
caption-side: top !important;
text-align: left !important;
font-size: 16px !important;
font-weight: 700 !important;
padding: 12px 0 !important;
color: #333 !important;
border-bottom: 2px solid #333 !important;
margin-bottom: 8px !important;
}}
/* 表头样式 */
.pest-pdf-thead {{
break-after: avoid !important;
page-break-after: avoid !important;
}}
.pest-pdf-thead th {{
background: #f5f3f7 !important;
padding: 10px 8px !important;
text-align: left !important;
font-weight: 600 !important;
border: 1px solid #ccc !important;
color: #4a4458 !important;
font-size: 11px !important;
}}
.pest-pdf-th-dimension {{ width: 70px !important; }}
.pest-pdf-th-num {{ width: 40px !important; text-align: center !important; }}
.pest-pdf-th-title {{ width: 20% !important; }}
.pest-pdf-th-detail {{ width: auto !important; }}
.pest-pdf-th-tags {{ width: 80px !important; text-align: center !important; }}
/* 摘要行 */
.pest-pdf-summary {{
padding: 10px 12px !important;
background: #f8f6fa !important;
color: #555 !important;
font-style: italic !important;
border: 1px solid #ccc !important;
font-size: 11px !important;
}}
/* 每个维度区块 - 核心分页控制 */
.pest-pdf-dimension {{
break-inside: avoid !important;
page-break-inside: avoid !important;
}}
/* 允许在不同维度之间分页 */
.pest-pdf-dimension + .pest-pdf-dimension {{
break-before: auto;
page-break-before: auto;
}}
/* 维度标签单元格 */
.pest-pdf-dimension-label {{
text-align: center !important;
vertical-align: middle !important;
padding: 12px 6px !important;
font-weight: 700 !important;
border: 1px solid #ccc !important;
width: 70px !important;
}}
/* 四个维度的颜色主题 */
.pest-pdf-dimension-label.pest-pdf-political {{
background: #f5eef8 !important;
color: #8e44ad !important;
border-left: 4px solid #8e44ad !important;
}}
.pest-pdf-dimension-label.pest-pdf-economic {{
background: #e8f6f3 !important;
color: #16a085 !important;
border-left: 4px solid #16a085 !important;
}}
.pest-pdf-dimension-label.pest-pdf-social {{
background: #fdecf4 !important;
color: #e84393 !important;
border-left: 4px solid #e84393 !important;
}}
.pest-pdf-dimension-label.pest-pdf-technological {{
background: #ebf3f9 !important;
color: #2980b9 !important;
border-left: 4px solid #2980b9 !important;
}}
/* 维度代码字母 */
.pest-pdf-code {{
display: block !important;
font-size: 20px !important;
font-weight: 800 !important;
margin-bottom: 2px !important;
}}
/* 维度标签文字 */
.pest-pdf-label-text {{
display: block !important;
font-size: 9px !important;
font-weight: 600 !important;
letter-spacing: 0.02em !important;
}}
/* 数据行 */
.pest-pdf-item-row td {{
padding: 8px 6px !important;
border: 1px solid #ddd !important;
vertical-align: top !important;
font-size: 11px !important;
line-height: 1.4 !important;
}}
/* 行背景色 */
.pest-pdf-item-row.pest-pdf-political td {{ background: #faf7fc !important; }}
.pest-pdf-item-row.pest-pdf-economic td {{ background: #f5fbfa !important; }}
.pest-pdf-item-row.pest-pdf-social td {{ background: #fef8fb !important; }}
.pest-pdf-item-row.pest-pdf-technological td {{ background: #f7fafd !important; }}
/* 序号单元格 */
.pest-pdf-item-num {{
text-align: center !important;
font-weight: 600 !important;
color: #888 !important;
width: 40px !important;
}}
/* 要点标题 */
.pest-pdf-item-title {{
font-weight: 600 !important;
color: #222 !important;
}}
/* 详情说明 */
.pest-pdf-item-detail {{
color: #444 !important;
line-height: 1.5 !important;
}}
/* 标签单元格 */
.pest-pdf-item-tags {{
text-align: center !important;
}}
/* 标签样式 */
.pest-pdf-tag {{
display: inline-block !important;
padding: 2px 6px !important;
border-radius: 3px !important;
font-size: 9px !important;
background: #ece9f1 !important;
color: #5a4f6a !important;
margin: 1px !important;
}}
/* 空数据提示 */
.pest-pdf-empty {{
text-align: center !important;
color: #999 !important;
font-style: italic !important;
}}
{optimized_css}
</style>
"""
# 在</head>前插入PDF专用CSS
html = html.replace('</head>', f'{pdf_css}\n</head>')
return html
def render_to_pdf(
self,
document_ir: Dict[str, Any],
output_path: str | Path,
optimize_layout: bool = True
) -> Path:
"""
将Document IR渲染为PDF文件
参数:
document_ir: Document IR数据
output_path: PDF输出路径
optimize_layout: 是否启用布局优化(默认True)
返回:
Path: 生成的PDF文件路径
"""
output_path = Path(output_path)
logger.info(f"开始生成PDF: {output_path}")
# 生成HTML内容
html_content = self._get_pdf_html(document_ir, optimize_layout)
# 配置字体
font_config = FontConfiguration()
# 从HTML字符串创建WeasyPrint HTML对象
html_doc = HTML(string=html_content, base_url=str(Path.cwd()))
# 生成PDF
try:
html_doc.write_pdf(
output_path,
font_config=font_config,
presentational_hints=True # 保留HTML的呈现提示
)
logger.info(f"✓ PDF生成成功: {output_path}")
return output_path
except Exception as e:
logger.error(f"PDF生成失败: {e}")
raise
def render_to_bytes(
self,
document_ir: Dict[str, Any],
optimize_layout: bool = True
) -> bytes:
"""
将Document IR渲染为PDF字节流
参数:
document_ir: Document IR数据
optimize_layout: 是否启用布局优化(默认True)
返回:
bytes: PDF文件的字节内容
"""
html_content = self._get_pdf_html(document_ir, optimize_layout)
font_config = FontConfiguration()
html_doc = HTML(string=html_content, base_url=str(Path.cwd()))
return html_doc.write_pdf(
font_config=font_config,
presentational_hints=True
)
__all__ = ["PDFRenderer"]