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
//! Text rasterizer - renders PDF text using tiny-skia.
//!
//! Text rendering in PDF is complex because:
//! - Fonts may be embedded or use standard PDF fonts
//! - Character encoding varies (identity-H, MacRoman, custom ToUnicode, etc.)
#![allow(clippy::collapsible_if, clippy::vec_box)]
//! - Glyph positioning is explicit via TJ arrays
//!
//! This module provides a text rendering implementation that:
//! - Uses system fonts as fallback when embedded fonts aren't available
//! - Renders text using rustybuzz for shaping and tiny-skia for drawing glyph paths
use super::create_fill_paint;
use crate::content::operators::TextElement;
use crate::content::GraphicsState;
use crate::document::PdfDocument;
use crate::error::{Error, Result};
use crate::object::Object;
use std::collections::HashMap;
use std::sync::Arc;
use tiny_skia::{Paint, PathBuilder, Pixmap, Transform};
use ttf_parser::OutlineBuilder;
/// Outline builder that converts ttf-parser paths to tiny-skia paths.
struct SkiaOutlineBuilder<'a>(&'a mut PathBuilder);
impl<'a> OutlineBuilder for SkiaOutlineBuilder<'a> {
fn move_to(&mut self, x: f32, y: f32) {
self.0.move_to(x, y);
}
fn line_to(&mut self, x: f32, y: f32) {
self.0.line_to(x, y);
}
fn quad_to(&mut self, x1: f32, y1: f32, x: f32, y: f32) {
self.0.quad_to(x1, y1, x, y);
}
fn curve_to(&mut self, x1: f32, y1: f32, x2: f32, y2: f32, x: f32, y: f32) {
self.0.cubic_to(x1, y1, x2, y2, x, y);
}
fn close(&mut self) {
self.0.close();
}
}
/// Process-wide cache for the system font database.
///
/// `fontdb::Database::load_system_fonts()` walks every font directory on
/// the host and parses each face it finds, which typically takes several
/// seconds on first call. Before this cache was introduced, every
/// `TextRasterizer::new()` (and therefore every `PageRenderer::new()`)
/// paid that cost, and callers who constructed a fresh `PageRenderer`
/// per page — which is the obvious first-draft usage from the Python /
/// CLI surface — hit the scan once per page. A cold-cache ORAFOL 5400
/// render took ~4.1 s on a warm machine for a single page because of
/// this. See issue #331.
///
/// Switching to a process-wide `OnceLock<Arc<fontdb::Database>>` loads
/// the database exactly once per process, and every subsequent
/// `TextRasterizer` constructor takes a cheap `Arc::clone`. Wrapping
/// in `Arc` is important so that the cache is still cheaply shareable
/// across `TextRasterizer` instances in different rendering contexts
/// without re-copying the full parsed font metadata. Callers that want
/// a private / modified database can still construct one by hand and
/// bypass this cache via `TextRasterizer::with_fontdb()`.
static SYSTEM_FONTDB: std::sync::OnceLock<std::sync::Arc<fontdb::Database>> =
std::sync::OnceLock::new();
fn system_fontdb() -> std::sync::Arc<fontdb::Database> {
SYSTEM_FONTDB
.get_or_init(|| {
let mut db = fontdb::Database::new();
db.load_system_fonts();
std::sync::Arc::new(db)
})
.clone()
}
/// Rasterizer for PDF text operations.
pub struct TextRasterizer {
/// Font database for system font fallback.
///
/// Shared across rasterizers via a process-wide `OnceLock` cache so
/// we don't re-scan the system font directories on every new
/// `PageRenderer`. See the `SYSTEM_FONTDB` docstring for the
/// measurement that motivated the switch.
fontdb: std::sync::Arc<fontdb::Database>,
}
impl TextRasterizer {
/// Create a new text rasterizer using the cached system font database.
pub fn new() -> Self {
Self {
fontdb: system_fontdb(),
}
}
/// Construct with a caller-supplied font database. Bypasses the
/// process-wide cache — useful for tests or callers that need to
/// pre-populate the database with non-system fonts.
#[allow(dead_code)]
pub fn with_fontdb(fontdb: std::sync::Arc<fontdb::Database>) -> Self {
Self { fontdb }
}
/// Render a text string (Tj operator).
/// Returns the total horizontal advance in PDF points.
#[allow(unused_variables)]
pub fn render_text(
&self,
pixmap: &mut Pixmap,
text: &[u8],
base_transform: Transform,
gs: &GraphicsState,
_resources: &Object,
doc: &mut PdfDocument,
clip_mask: Option<&tiny_skia::Mask>,
font_cache: &HashMap<String, Arc<crate::fonts::FontInfo>>,
) -> Result<f32> {
// Get font info from cache
let font_info = if let Some(font_name) = &gs.font_name {
font_cache.get(font_name).cloned()
} else {
None
};
// Convert raw PDF bytes to Unicode string using font encoding
let unicode_text = self.decode_text_to_unicode(text, font_info.as_deref());
log::debug!("Decoded text: '{}' (font={:?})", unicode_text, gs.font_name);
// Create paint from fill color
let mut paint = create_fill_paint(gs, "Normal");
// Text rendering mode 3 = invisible text (used for searchable OCR layers)
if gs.render_mode == 3 {
paint.set_color(tiny_skia::Color::from_rgba(0.0, 0.0, 0.0, 0.0).unwrap());
}
// Find and load font - prioritize embedded font data
let pdf_font_name = gs.font_name.as_deref().unwrap_or("Helvetica");
let font_data_and_index: Option<(Vec<u8>, u32, bool)> = if let Some(ref info) = font_info {
if let Some(ref embedded) = info.embedded_font_data {
// Validate embedded font: check if rustybuzz can find real glyphs (not .notdef)
// CID subset fonts often lack standard Unicode cmap tables, so shaping
// produces gid=0 for every character.
let usable = if let Some(face) = rustybuzz::Face::from_slice(embedded, 0) {
let mut buf = rustybuzz::UnicodeBuffer::new();
buf.push_str(&unicode_text);
buf.set_direction(rustybuzz::Direction::LeftToRight);
let shaped = rustybuzz::shape(&face, &[], buf);
let infos = shaped.glyph_infos();
infos.iter().any(|g| g.glyph_id != 0)
} else {
false
};
if usable {
log::debug!("Using embedded font data for '{}'", info.base_font);
Some((embedded.to_vec(), 0, false))
} else if info.subtype == "Type0"
&& info.cid_to_gid_map.is_some()
&& info.cid_font_type.as_deref() == Some("CIDFontType2")
{
// CIDFontType2 (TrueType) with CIDToGIDMap — use direct GID rendering
// Note: CIDFontType0 (CFF) requires a CFF parser which ttf-parser doesn't handle
// for raw CFF data (FontFile3), so those fall back to system fonts.
log::debug!(
"Using embedded font '{}' with CIDToGIDMap (CIDFontType2)",
info.base_font
);
Some((embedded.to_vec(), 0, true))
} else if info.cff_gid_map.is_some() {
// CFF font with byte→GID mapping — use direct rendering
log::debug!(
"Using embedded CFF font '{}' with direct GID mapping",
info.base_font
);
Some((embedded.to_vec(), 0, true))
} else {
log::debug!(
"Embedded font '{}' lacks usable cmap, falling back to system font",
info.base_font
);
self.load_font_data(&info.base_font)
.map(|(d, i)| (d, i, false))
}
} else {
self.load_font_data(&info.base_font)
.map(|(d, i)| (d, i, false))
}
} else {
self.load_font_data(pdf_font_name)
.map(|(d, i)| (d, i, false))
};
if let Some((font_data, index, use_cid_to_gid)) = font_data_and_index {
if use_cid_to_gid {
// Direct CIDToGIDMap/CFF rendering — bypass rustybuzz, use ttf-parser for glyph outlines
match self.render_cid_direct(
pixmap,
text,
font_info.as_deref().unwrap(),
&font_data,
index,
&paint,
base_transform,
gs,
clip_mask,
) {
Ok(advance) => return Ok(advance),
Err(e) => {
// Fall back to system font if embedded parsing fails
log::warn!(
"Direct CID/CFF rendering failed: {}, falling back to system font",
e
);
if let Some((fallback_data, fallback_idx)) =
self.load_font_data(pdf_font_name)
{
return self.render_unicode_text(
pixmap,
&unicode_text,
text,
font_info.as_deref(),
&fallback_data,
fallback_idx,
&paint,
base_transform,
gs,
clip_mask,
pdf_font_name,
false,
);
}
},
}
}
Ok(self.render_unicode_text(
pixmap,
&unicode_text,
text, // raw bytes
font_info.as_deref(),
&font_data,
index,
&paint,
base_transform,
gs,
clip_mask,
pdf_font_name,
true, // allow_fallback
)?)
} else {
let font_name = font_info
.as_ref()
.map(|i| i.base_font.as_str())
.unwrap_or("unknown");
log::warn!(
"No font found for '{}', text may render incorrectly. \
Install common fonts (e.g., liberation-fonts, dejavu-fonts, or noto-fonts).",
font_name
);
// Fallback to simple rendering if font not found
Ok(self.render_text_fallback(
pixmap,
&unicode_text,
&paint,
base_transform,
gs,
clip_mask,
)?)
}
}
/// Decode raw PDF text bytes to a Unicode string based on font type.
fn decode_text_to_unicode(
&self,
bytes: &[u8],
font: Option<&crate::fonts::FontInfo>,
) -> String {
let raw_result = if let Some(font) = font {
let mut result = String::new();
// Use pre-computed lookup table for performance if it's a simple font
if font.subtype != "Type0" {
let table = font.get_byte_to_char_table();
for &byte in bytes {
let c = table[byte as usize];
if c != '\0' {
result.push(c);
} else {
// Fallback: multi-char mapping or unmapped byte
let char_str = font
.char_to_unicode(byte as u32)
.unwrap_or_else(|| fallback_char_to_unicode(byte as u32));
if char_str != "\u{FFFD}" {
result.push_str(&char_str);
}
}
}
} else {
// Complex font: use unified iterator for robust multi-byte decoding
for (char_code, _) in TextCharIter::new(bytes, Some(font)) {
let char_str = font
.char_to_unicode(char_code as u32)
.unwrap_or_else(|| fallback_char_to_unicode(char_code as u32));
if char_str != "\u{FFFD}" {
result.push_str(&char_str);
}
}
}
result
} else {
// No font - fallback to Latin-1 (ISO 8859-1) encoding
bytes.iter().map(|&b| char::from(b)).collect()
};
// Filter control characters from failed encoding resolution,
// and expand presentation-form ligature code points (fi, fl, ffi,
// ffl, st, ct, …) into their component letters so the shaper
// passes the cluster through as ordinary glyphs instead of
// dropping it or producing a lone box. `extract_text` already
// does this on the extraction path via
// `ligature_processor::get_ligature_components`; without the
// same decomposition on the render path, words like
// "Efficient" rasterize as "Effi ert" because the shaper can't
// resolve the ligature cluster against the fallback system
// font. See issue #331 (R2).
let mut filtered = String::with_capacity(raw_result.len());
for c in raw_result.chars() {
if c < '\x20' && c != '\t' && c != '\n' && c != '\r' {
continue;
}
if let Some(components) = crate::text::ligature_processor::get_ligature_components(c) {
filtered.push_str(components);
} else {
filtered.push(c);
}
}
filtered
}
/// Render a TJ array (text with positioning adjustments).
/// Returns the total horizontal advance in PDF points.
pub fn render_tj_array(
&self,
pixmap: &mut Pixmap,
array: &[TextElement],
base_transform: Transform,
gs: &GraphicsState,
resources: &Object,
doc: &mut PdfDocument,
clip_mask: Option<&tiny_skia::Mask>,
font_cache: &HashMap<String, Arc<crate::fonts::FontInfo>>,
) -> Result<f32> {
let mut current_gs = gs.clone();
let mut total_advance: f32 = 0.0;
for element in array {
match element {
TextElement::String(text) => {
let advance = self.render_text(
pixmap,
text,
base_transform,
¤t_gs,
resources,
doc,
clip_mask,
font_cache,
)?;
// Advance text position in text space: Tm' = T(advance, 0) * Tm
let advance_matrix = crate::content::Matrix::translation(advance, 0.0);
current_gs.text_matrix = advance_matrix.multiply(¤t_gs.text_matrix);
total_advance += advance;
},
TextElement::Offset(offset) => {
// PDF offsets are in 1/1000th of a unit, and positive shifts text to the left
let shift = (-offset / 1000.0) * current_gs.font_size;
let advance_matrix = crate::content::Matrix::translation(shift, 0.0);
current_gs.text_matrix = advance_matrix.multiply(¤t_gs.text_matrix);
total_advance += shift;
},
}
}
Ok(total_advance)
}
/// Get font info for a specific font name from resources.
#[allow(dead_code)]
fn get_font_info(
&self,
doc: &mut PdfDocument,
resources: &Object,
font_name: &str,
) -> Result<crate::fonts::FontInfo> {
if let Object::Dictionary(res_dict) = resources {
if let Some(Object::Dictionary(fonts)) = res_dict.get("Font") {
if let Some(font_ref) = fonts.get(font_name) {
let font_obj = doc.resolve_object(font_ref)?;
let info = crate::fonts::FontInfo::from_dict(&font_obj, doc)?;
log::debug!("Resolved font '{}': subtype={}, encoding={:?}, has_to_unicode={}, has_embedded={}",
info.base_font, info.subtype, info.encoding, info.to_unicode.is_some(), info.embedded_font_data.is_some());
return Ok(info);
}
}
}
Err(Error::InvalidPdf(format!("Font {} not found", font_name)))
}
/// Find and load font data from system.
fn load_font_data(&self, pdf_font_name: &str) -> Option<(Vec<u8>, u32)> {
// Strip subset prefix (e.g., "ABCDEF+FontName" -> "FontName")
let clean_name = if let Some(plus_idx) = pdf_font_name.find('+') {
&pdf_font_name[plus_idx + 1..]
} else {
pdf_font_name
};
// Handle common CJK names and encoding markers
let is_cjk_probability = clean_name.contains("GB2312")
|| clean_name.contains("Identity")
|| clean_name.contains("楷体")
|| clean_name.contains("楷ä½") // Mojibake variant
|| clean_name.contains("宋体")
|| clean_name.contains("å®\u{008b}ä½") // Mojibake variant
|| clean_name.contains("黑体")
|| clean_name.contains("é»\u{0091}ä½") // Mojibake variant
|| clean_name.contains("FangSong")
|| clean_name.contains("SimSun")
|| clean_name.contains("SimHei")
|| clean_name.contains("KaiTi")
|| pdf_font_name == "F1";
let final_name = if clean_name.contains("楷体")
|| clean_name.contains("楷ä½")
|| clean_name.contains("KaiTi")
{
"KaiTi"
} else if clean_name.contains("宋体")
|| clean_name.contains("å®\u{008b}ä½")
|| clean_name.contains("SimSun")
{
"SimSun"
} else if clean_name.contains("黑体")
|| clean_name.contains("é»\u{0091}ä½")
|| clean_name.contains("SimHei")
{
"SimHei"
} else {
clean_name
};
// Map well-known PDF/LaTeX font names to system font equivalents
let mut variants = vec![final_name.to_string()];
// URW/TeX font mappings to URW base35 system fonts
if clean_name.contains("URWPalladioL") || clean_name.contains("Palatino") {
variants.insert(0, "P052".to_string());
variants.push("Palatino Linotype".to_string());
variants.push("TeX Gyre Pagella".to_string());
} else if clean_name.contains("NimbusRomNo9L") || clean_name.contains("NimbusRoman") {
variants.insert(0, "Nimbus Roman".to_string());
variants.push("Times New Roman".to_string());
} else if clean_name.contains("NimbusSanL") || clean_name.contains("NimbusSans") {
variants.insert(0, "Nimbus Sans".to_string());
variants.push("Arial".to_string());
} else if clean_name.contains("NimbusMonL") || clean_name.contains("NimbusMono") {
variants.insert(0, "Nimbus Mono PS".to_string());
variants.push("Courier New".to_string());
} else if clean_name.contains("CMSS")
|| clean_name.contains("CMR")
|| clean_name.contains("CMBX")
{
// Computer Modern fonts (LaTeX) — use Latin Modern or serif fallback
variants.push("Latin Modern Roman".to_string());
variants.push("Computer Modern".to_string());
} else if clean_name.contains("URWBookmanL") || clean_name.contains("Bookman") {
variants.insert(0, "Bookman URW".to_string());
} else if clean_name.contains("CenturySchL") || clean_name.contains("NewCentury") {
variants.insert(0, "C059".to_string());
} else if clean_name.contains("URWChanceryL") || clean_name.contains("Chancery") {
variants.insert(0, "Z003".to_string());
}
if is_cjk_probability {
variants.push("Noto Sans CJK SC".to_string());
variants.push("Noto Serif CJK SC".to_string());
variants.push("WenQuanYi Micro Hei".to_string());
variants.push("Droid Sans Fallback".to_string());
}
// Generic fallbacks — detect serif vs sans-serif
let is_serif = clean_name.contains("Roman")
|| clean_name.contains("Serif")
|| clean_name.contains("Times")
|| clean_name.contains("Palladio")
|| clean_name.contains("Palatino")
|| clean_name.contains("Bookman")
|| clean_name.contains("Garamond")
|| clean_name.contains("Century")
|| clean_name.contains("Georgia")
|| clean_name.contains("CMR")
|| clean_name.contains("CMBX")
|| clean_name.contains("CMTI");
if is_serif {
variants.push("Times New Roman".to_string());
variants.push("Liberation Serif".to_string());
variants.push("DejaVu Serif".to_string());
}
variants.push("Arial".to_string());
variants.push("Helvetica".to_string());
variants.push("Liberation Sans".to_string());
variants.push("DejaVu Sans".to_string());
variants.push("Noto Sans".to_string());
variants.push("FreeSans".to_string());
let weight = if pdf_font_name.contains("Bold") || pdf_font_name.contains("Black") {
fontdb::Weight::BOLD
} else {
fontdb::Weight::NORMAL
};
let style = if pdf_font_name.contains("Italic") || pdf_font_name.contains("Oblique") {
fontdb::Style::Italic
} else {
fontdb::Style::Normal
};
for variant in variants {
let families = [
fontdb::Family::Name(&variant),
fontdb::Family::Serif,
fontdb::Family::SansSerif,
];
let query = fontdb::Query {
families: &families,
weight,
stretch: fontdb::Stretch::Normal,
style,
};
if let Some(id) = self.font_db().query(&query) {
let mut data = None;
self.font_db().with_face_data(id, |face_data, index| {
log::debug!(
"Matched system font for {}: variant={}, index={}, size={} bytes",
pdf_font_name,
variant,
index,
face_data.len()
);
data = Some((face_data.to_vec(), index));
});
if data.is_some() {
return data;
}
}
}
log::debug!(
"No system font matched for '{}' after trying all fallback variants",
pdf_font_name
);
None
}
/// Access the font database.
fn font_db(&self) -> &fontdb::Database {
&self.fontdb
}
/// Render Unicode text using shaped glyphs.
/// Returns the total horizontal advance in PDF points.
fn render_unicode_text(
&self,
pixmap: &mut Pixmap,
text: &str,
bytes: &[u8],
font_info: Option<&crate::fonts::FontInfo>,
font_data: &[u8],
index: u32,
paint: &Paint,
base_transform: Transform,
gs: &GraphicsState,
clip_mask: Option<&tiny_skia::Mask>,
pdf_font_name: &str,
allow_fallback: bool,
) -> Result<f32> {
let font_size = gs.font_size;
let h_scale = gs.horizontal_scaling / 100.0;
// 1. Create rustybuzz face and buffer
let rb_face_opt = rustybuzz::Face::from_slice(font_data, index);
if rb_face_opt.is_none() {
if allow_fallback {
log::warn!("Failed to create rustybuzz face from embedded data for '{}', falling back to system font", pdf_font_name);
if let Some((fallback_data, fallback_index)) = self.load_font_data(pdf_font_name) {
return self.render_unicode_text(
pixmap,
text,
bytes,
font_info,
&fallback_data,
fallback_index,
paint,
base_transform,
gs,
clip_mask,
pdf_font_name,
false, // don't allow infinite fallback
);
}
}
return self.render_text_fallback(pixmap, text, paint, base_transform, gs, clip_mask);
}
let rb_face = rb_face_opt.unwrap();
let mut buffer = rustybuzz::UnicodeBuffer::new();
buffer.push_str(text);
// Explicitly set script and direction for better CJK shaping
if text
.chars()
.any(|c| (c as u32) >= 0x4E00 && (c as u32) <= 0x9FFF)
{
if let Some(script) = rustybuzz::Script::from_iso15924_tag(
rustybuzz::ttf_parser::Tag::from_bytes(b"Hani"),
) {
buffer.set_script(script);
}
}
buffer.set_direction(rustybuzz::Direction::LeftToRight);
// 2. Shape the text
let glyphs = rustybuzz::shape(&rb_face, &[], buffer);
let info = glyphs.glyph_infos();
let pos = glyphs.glyph_positions();
// 3. Load ttf-parser face for outlines
let ttf_face = ttf_parser::Face::parse(font_data, index)
.map_err(|e| Error::InvalidPdf(format!("Failed to parse font: {}", e)))?;
let units_per_em = ttf_face.units_per_em() as f32;
let scale = font_size / units_per_em;
log::debug!(
"render_unicode_text: pdf_font={}, units_per_em={}, font_size={}, scale={}",
pdf_font_name,
units_per_em,
font_size,
scale
);
// 4. Transform setup - include full text matrix [Tm]
let text_transform = Transform::from_row(
gs.text_matrix.a,
gs.text_matrix.b,
gs.text_matrix.c,
gs.text_matrix.d,
gs.text_matrix.e,
gs.text_matrix.f,
);
// Transform from text space to pixel space: P_pixel = base_transform * text_transform * P_text
let combined_base = base_transform.pre_concat(text_transform);
let mut x_cursor: f32 = 0.0; // In text space units
let mut last_fallback_cluster: Option<usize> = None;
// Pre-resolve CIDs for Type0 fonts using our iterator
let cids: Vec<u16> = if let Some(info) = font_info {
if info.subtype == "Type0" {
TextCharIter::new(bytes, Some(info))
.map(|(cid, _)| cid)
.collect()
} else {
Vec::new()
}
} else {
Vec::new()
};
// Build mapping from Unicode byte offset → character index for correct CID lookup.
// Rustybuzz clusters are byte offsets into the Unicode string, but we need
// the character index to map to the corresponding CID.
let cluster_to_char_idx: HashMap<usize, usize> = text
.char_indices()
.enumerate()
.map(|(char_idx, (byte_offset, _))| (byte_offset, char_idx))
.collect();
// 5. Iterate through shaped glyphs
for i in 0..info.len() {
let glyph_id = info[i].glyph_id;
let cluster = info[i].cluster as usize;
// Get character at this cluster (byte offset)
let char_at_pos = text[cluster..].chars().next().unwrap_or(' ');
// Map cluster (Unicode byte offset) to character index
let char_idx = cluster_to_char_idx.get(&cluster).copied().unwrap_or(0);
// Determine how many *source* characters this glyph represents.
// For normal 1:1 glyphs, cluster_chars == 1. For shaped
// ligatures like the "ffi" glyph (#331 R2), one glyph covers
// multiple characters and rustybuzz reports them with the
// same cluster index on every glyph of the cluster. Since we
// advance the output cursor by the sum of the PDF-declared
// widths of the *source* characters (per PDF §9.2.4 text-
// showing advance), we must add the widths of every source
// character in the ligature cluster to the cursor, not just
// the first character's width. Otherwise a ligature glyph
// draws wide but only advances by one character's worth, and
// subsequent glyphs overwrite the tail of the ligature —
// exactly the `Efficient` → `Effi ert` symptom reported in
// #331 on arxiv-style LaTeX-embedded fonts.
let next_cluster_byte: usize = info
.get(i + 1)
.map(|n| n.cluster as usize)
.unwrap_or(text.len());
let cluster_chars: usize = text[cluster..next_cluster_byte.min(text.len())]
.chars()
.count()
.max(1);
// PDF Spec: tx = ((w0 * Tfs) + Tc + Tw) * Th
// Priority:
// 1. Explicit /W or /DW from FontInfo (in 1000ths of em),
// summed across every source character in the cluster
// so ligatures advance by the full cluster's width.
// 2. Shaped advance from rustybuzz (fallback, already
// reflects the ligature's real width because it comes
// from the font's horizontal metrics table).
let pdf_width = if let Some(font_info_ref) = font_info {
let mut sum = 0.0_f32;
for k in 0..cluster_chars {
let idx = char_idx + k;
let char_code = if font_info_ref.subtype == "Type0" {
*cids.get(idx).unwrap_or(&0)
} else {
*bytes.get(idx).unwrap_or(&0) as u16
};
sum += font_info_ref.get_glyph_width(char_code);
}
sum
} else {
// No FontInfo, use shaped advance
pos[i].x_advance as f32 / font_size * 1000.0
};
let x_advance = pdf_width * font_size / 1000.0;
let x_offset = pos[i].x_offset as f32 / units_per_em * font_size;
let y_offset = pos[i].y_offset as f32 / units_per_em * font_size;
let mut x_advance_override: Option<f32> = None;
// Try to get glyph from primary font
let mut pb = PathBuilder::new();
let mut builder = SkiaOutlineBuilder(&mut pb);
let mut has_outline = ttf_face
.outline_glyph(ttf_parser::GlyphId(glyph_id as u16), &mut builder)
.is_some();
if has_outline && glyph_id != 0 {
if let Some(path) = pb.finish() {
let glyph_transform = combined_base
.pre_translate((x_cursor + x_offset) * h_scale, y_offset + gs.text_rise)
.pre_scale(scale, scale);
pixmap.fill_path(
&path,
paint,
tiny_skia::FillRule::Winding,
glyph_transform,
clip_mask,
);
}
} else {
// FALLBACK PATH: If primary font fails, use the cluster offset to find the original character
// char_at_pos already retrieved above using byte offset
// Skip empty glyphs for spaces
if char_at_pos.is_whitespace() {
x_cursor += x_advance;
x_cursor += gs.char_space;
if char_at_pos == ' ' {
x_cursor += gs.word_space;
}
continue;
}
// IMPORTANT: Only render fallback character ONCE per cluster
if last_fallback_cluster == Some(cluster) {
x_cursor += x_advance;
continue;
}
last_fallback_cluster = Some(cluster);
// Try to find character in fallback CJK fonts
if let Some((cjk_data, cjk_index)) = self.load_cjk_fallback() {
if let Ok(cjk_face) = ttf_parser::Face::parse(&cjk_data, cjk_index) {
if let Some(cjk_glyph_id) = cjk_face.glyph_index(char_at_pos) {
let mut cjk_pb = PathBuilder::new();
let mut cjk_builder = SkiaOutlineBuilder(&mut cjk_pb);
if cjk_face
.outline_glyph(cjk_glyph_id, &mut cjk_builder)
.is_some()
{
if let Some(cjk_path) = cjk_pb.finish() {
let cjk_scale = font_size / cjk_face.units_per_em() as f32;
let cjk_transform = combined_base
.pre_translate(
(x_cursor + x_offset) * h_scale,
y_offset + gs.text_rise,
)
.pre_scale(cjk_scale, -cjk_scale);
pixmap.fill_path(
&cjk_path,
paint,
tiny_skia::FillRule::Winding,
cjk_transform,
clip_mask,
);
has_outline = true;
// Set override advance from fallback font
if let Some(adv) = cjk_face.glyph_hor_advance(cjk_glyph_id) {
x_advance_override = Some(
adv as f32 / cjk_face.units_per_em() as f32 * font_size,
);
}
}
}
}
}
}
if !has_outline {
log::debug!(
"No glyph outline found for char='{}' (0x{:X})",
char_at_pos,
char_at_pos as u32
);
}
}
// Advance cursor in text space
// PDF spec: tx = ((w0 * Tfs) + Tc + Tw) * Th
// Note: x_advance already includes w0 * Tfs
x_cursor += x_advance_override.unwrap_or(x_advance);
// Add character spacing (Tc)
x_cursor += gs.char_space;
if char_at_pos == ' ' {
// Add word spacing (Tw) for space characters
x_cursor += gs.word_space;
}
}
Ok(x_cursor)
}
/// Render text using direct CID-to-GID mapping, bypassing rustybuzz shaping.
/// Used for CID subset fonts that have embedded data but no usable Unicode cmap.
/// Per PDF spec section 9.7.4, CIDToGIDMap maps CIDs to glyph indices in the TrueType font.
fn render_cid_direct(
&self,
pixmap: &mut Pixmap,
bytes: &[u8],
font_info: &crate::fonts::FontInfo,
font_data: &[u8],
index: u32,
paint: &Paint,
base_transform: Transform,
gs: &GraphicsState,
clip_mask: Option<&tiny_skia::Mask>,
) -> Result<f32> {
let font_size = gs.font_size;
let h_scale = gs.horizontal_scaling / 100.0;
let ttf_face = ttf_parser::Face::parse(font_data, index)
.map_err(|e| Error::InvalidPdf(format!("Failed to parse embedded font: {}", e)))?;
let units_per_em = ttf_face.units_per_em() as f32;
let scale = font_size / units_per_em;
let text_transform = Transform::from_row(
gs.text_matrix.a,
gs.text_matrix.b,
gs.text_matrix.c,
gs.text_matrix.d,
gs.text_matrix.e,
gs.text_matrix.f,
);
let combined_base = base_transform.pre_concat(text_transform);
let mut x_cursor: f32 = 0.0;
// Iterate over character codes from the raw bytes
for (char_code, _bytes_consumed) in TextCharIter::new(bytes, Some(font_info)) {
// Map character code to GID based on font type:
// - CIDFontType2: CIDToGIDMap maps CID → GID
// - CFF simple font: cff_gid_map maps byte → GID
// - Default: identity mapping
let gid = if let Some(cff_map) = &font_info.cff_gid_map {
*cff_map.get(&(char_code as u8)).unwrap_or(&0)
} else {
match &font_info.cid_to_gid_map {
Some(crate::fonts::CIDToGIDMap::Identity) => char_code,
Some(crate::fonts::CIDToGIDMap::Explicit(map)) => {
*map.get(char_code as usize).unwrap_or(&0)
},
None => char_code,
}
};
let cid = char_code; // For width lookup
// Get width from PDF metrics
let pdf_width = font_info.get_glyph_width(cid);
let x_advance = pdf_width * font_size / 1000.0;
// Get Unicode character for space detection
let char_str = font_info.char_to_unicode(cid as u32).unwrap_or_default();
let char_at_pos = char_str.chars().next().unwrap_or(' ');
// Draw glyph outline
if gid != 0 || char_at_pos.is_whitespace() {
if !char_at_pos.is_whitespace() {
let mut pb = PathBuilder::new();
let mut builder = SkiaOutlineBuilder(&mut pb);
if ttf_face
.outline_glyph(ttf_parser::GlyphId(gid), &mut builder)
.is_some()
{
if let Some(path) = pb.finish() {
let glyph_transform = combined_base
.pre_translate(x_cursor * h_scale, gs.text_rise)
.pre_scale(scale, scale);
pixmap.fill_path(
&path,
paint,
tiny_skia::FillRule::Winding,
glyph_transform,
clip_mask,
);
}
}
}
}
x_cursor += x_advance;
x_cursor += gs.char_space;
if char_at_pos == ' ' {
x_cursor += gs.word_space;
}
}
Ok(x_cursor)
}
/// Load a dedicated CJK fallback font.
fn load_cjk_fallback(&self) -> Option<(Vec<u8>, u32)> {
// Prioritize Simplified Chinese (SC) variants first
let prioritized_variants = [
"Noto Sans CJK SC",
"Noto Serif CJK SC",
"Droid Sans Fallback",
"SimSun",
"WenQuanYi Micro Hei",
"Noto Sans CJK JP",
"Noto Serif CJK JP",
];
for variant in prioritized_variants {
let families = [fontdb::Family::Name(variant)];
let query = fontdb::Query {
families: &families,
weight: fontdb::Weight::NORMAL,
stretch: fontdb::Stretch::Normal,
style: fontdb::Style::Normal,
};
if let Some(id) = self.font_db().query(&query) {
let mut data = None;
self.font_db().with_face_data(id, |face_data, index| {
log::debug!(
"CJK Fallback matched variant '{}': index={}, size={} bytes",
variant,
index,
face_data.len()
);
data = Some((face_data.to_vec(), index));
});
if data.is_some() {
return data;
}
}
}
// Generic fallback if no specific CJK font found
let query = fontdb::Query {
families: &[fontdb::Family::SansSerif],
weight: fontdb::Weight::NORMAL,
stretch: fontdb::Stretch::Normal,
style: fontdb::Style::Normal,
};
if let Some(id) = self.font_db().query(&query) {
let mut data = None;
self.font_db().with_face_data(id, |face_data, index| {
data = Some((face_data.to_vec(), index));
});
data
} else {
None
}
}
/// Fallback simple rendering if no font found.
/// Returns the total horizontal advance in PDF points.
fn render_text_fallback(
&self,
pixmap: &mut Pixmap,
text: &str,
paint: &Paint,
base_transform: Transform,
gs: &GraphicsState,
clip_mask: Option<&tiny_skia::Mask>,
) -> Result<f32> {
// Just draw rectangles for now as very last resort
let font_size = gs.font_size;
let char_width = font_size * 0.6;
let mut x_cursor: f32 = 0.0;
let h_scale = gs.horizontal_scaling / 100.0;
let text_transform = Transform::from_row(
gs.text_matrix.a,
gs.text_matrix.b,
gs.text_matrix.c,
gs.text_matrix.d,
gs.text_matrix.e,
gs.text_matrix.f,
);
let transform = base_transform.pre_concat(text_transform);
for c in text.chars() {
if !c.is_whitespace() {
let mut pb = PathBuilder::new();
if let Some(rect) = tiny_skia::Rect::from_xywh(
x_cursor * h_scale,
0.0,
char_width * 0.8,
font_size * 0.8,
) {
pb.push_rect(rect);
if let Some(path) = pb.finish() {
pixmap.fill_path(
&path,
paint,
tiny_skia::FillRule::Winding,
transform,
clip_mask,
);
}
}
}
x_cursor += (char_width + gs.char_space) / h_scale;
if c == ' ' {
x_cursor += gs.word_space / h_scale;
}
}
Ok(x_cursor * h_scale)
}
}
/// Byte grouping mode for CID font character code decoding.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum ByteMode {
/// Single-byte codes (simple fonts, some predefined CMaps)
OneByte,
/// Always 2-byte codes (Identity-H/V, UCS2)
TwoByte,
/// Shift-JIS variable-width (1 or 2 bytes depending on lead byte)
ShiftJIS,
}
/// Get byte grouping mode for a font.
fn get_byte_mode(font: Option<&crate::fonts::FontInfo>) -> ByteMode {
if let Some(font) = font {
if font.subtype == "Type0" {
match &font.encoding {
crate::fonts::Encoding::Identity => ByteMode::TwoByte,
crate::fonts::Encoding::Standard(name) => {
if (name.contains("Identity") && !name.contains("OneByteIdentity"))
|| name.contains("UCS2")
|| name.contains("UTF16")
{
ByteMode::TwoByte
} else if name.contains("RKSJ") {
ByteMode::ShiftJIS
} else if name.contains("EUC")
|| name.contains("GBK")
|| name.contains("GBpc")
|| name.contains("GB-")
|| name.contains("CNS")
|| name.contains("B5")
|| name.contains("KSC")
|| name.contains("KSCms")
{
ByteMode::TwoByte
} else {
ByteMode::OneByte
}
},
_ => ByteMode::OneByte,
}
} else {
ByteMode::OneByte
}
} else {
ByteMode::OneByte
}
}
/// Iterator over characters in a PDF string based on font encoding.
struct TextCharIter<'a> {
bytes: &'a [u8],
byte_mode: ByteMode,
index: usize,
}
impl<'a> TextCharIter<'a> {
fn new(bytes: &'a [u8], font: Option<&crate::fonts::FontInfo>) -> Self {
Self {
bytes,
byte_mode: get_byte_mode(font),
index: 0,
}
}
}
impl<'a> Iterator for TextCharIter<'a> {
type Item = (u16, usize); // (char_code, bytes_consumed)
fn next(&mut self) -> Option<Self::Item> {
if self.index >= self.bytes.len() {
return None;
}
let (char_code, bytes_consumed) = match self.byte_mode {
ByteMode::TwoByte if self.index + 1 < self.bytes.len() => {
(((self.bytes[self.index] as u16) << 8) | (self.bytes[self.index + 1] as u16), 2)
},
ByteMode::ShiftJIS => {
let b = self.bytes[self.index];
let is_lead = (0x81..=0x9F).contains(&b) || (0xE0..=0xFC).contains(&b);
if is_lead && self.index + 1 < self.bytes.len() {
(((b as u16) << 8) | (self.bytes[self.index + 1] as u16), 2)
} else {
(b as u16, 1)
}
},
_ => (self.bytes[self.index] as u16, 1),
};
self.index += bytes_consumed;
Some((char_code, bytes_consumed))
}
}
/// Fallback function to map common character codes to Unicode when ToUnicode CMap fails.
fn fallback_char_to_unicode(char_code: u32) -> String {
match char_code {
0x2014 => "—".to_string(),
0x2013 => "–".to_string(),
0x2018 => "\u{2018}".to_string(),
0x2019 => "\u{2019}".to_string(),
0x201C => "\u{201C}".to_string(),
0x201D => "\u{201D}".to_string(),
0x2022 => "•".to_string(),
0x2026 => "…".to_string(),
0x00B0 => "°".to_string(),
0x00B1 => "±".to_string(),
0x00D7 => "×".to_string(),
0x00F7 => "÷".to_string(),
0x2202 => "∂".to_string(),
0x2207 => "∇".to_string(),
0x220F => "∏".to_string(),
0x2211 => "∑".to_string(),
0x221A => "√".to_string(),
0x221E => "∞".to_string(),
0x2260 => "≠".to_string(),
0x2261 => "≡".to_string(),
0x2264 => "≤".to_string(),
0x2265 => "≥".to_string(),
code => {
if let Some(ch) = char::from_u32(code) {
ch.to_string()
} else {
"\u{FFFD}".to_string()
}
},
}
}
impl Default for TextRasterizer {
fn default() -> Self {
Self::new()
}
}