skrifa/outline/autohint/latin/widths.rs
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
//! Latin standard stem width computation.
use super::super::{
axis::Axis,
metrics::{self, UnscaledWidths, WidthMetrics, MAX_WIDTHS},
outline::Outline,
shape::{ShapedCluster, Shaper},
style::{ScriptClass, ScriptGroup},
};
use crate::MetadataProvider;
use raw::{types::F2Dot14, TableProvider};
/// Compute all stem widths and initialize standard width and height for the
/// given script.
///
/// Returns width metrics and unscaled widths for each dimension.
///
/// See <https://gitlab.freedesktop.org/freetype/freetype/-/blob/57617782464411201ce7bbc93b086c1b4d7d84a5/src/autofit/aflatin.c#L54>
pub(super) fn compute_widths(
shaper: &Shaper,
coords: &[F2Dot14],
script: &ScriptClass,
) -> [(WidthMetrics, UnscaledWidths); 2] {
let mut result: [(WidthMetrics, UnscaledWidths); 2] = Default::default();
let font = shaper.font();
let glyphs = font.outline_glyphs();
let units_per_em = font
.head()
.map(|head| head.units_per_em() as i32)
.unwrap_or_default();
let mut outline = Outline::default();
let mut axis = Axis::default();
let mut shaped_cluster = ShapedCluster::default();
// We take the first available glyph from the standard character set.
let glyph = script
.std_chars
.split(' ')
.filter_map(|cluster| {
shaper.shape_cluster(cluster, &mut shaped_cluster);
// Reject input that maps to more than a single glyph
// See <https://gitlab.freedesktop.org/freetype/freetype/-/blob/57617782464411201ce7bbc93b086c1b4d7d84a5/src/autofit/aflatin.c#L128>
match shaped_cluster.as_slice() {
[glyph] if glyph.id.to_u32() != 0 => glyphs.get(glyph.id),
_ => None,
}
})
.next();
if let Some(glyph) = glyph {
if outline.fill(&glyph, coords).is_ok() && !outline.points.is_empty() {
// Now process each dimension
for (dim, (_metrics, widths)) in result.iter_mut().enumerate() {
axis.reset(dim, outline.orientation);
// Segment computation for widths always uses the default
// script group
super::segments::compute_segments(&mut outline, &mut axis, ScriptGroup::Default);
super::segments::link_segments(&outline, &mut axis, 0, ScriptGroup::Default, None);
let segments = axis.segments.as_slice();
for (segment_ix, segment) in segments.iter().enumerate() {
let segment_ix = segment_ix as u16;
let Some(link_ix) = segment.link_ix else {
continue;
};
let link = &segments[link_ix as usize];
if link_ix > segment_ix && link.link_ix == Some(segment_ix) {
let dist = (segment.pos as i32 - link.pos as i32).abs();
if widths.len() < MAX_WIDTHS {
widths.push(dist);
} else {
break;
}
}
}
// FreeTypes `af_sort_and_quantize_widths()`` has the side effect
// of always updating the width count to 1 when we don't find
// any...
// See <https://gitlab.freedesktop.org/freetype/freetype/-/blob/57617782464411201ce7bbc93b086c1b4d7d84a5/src/autofit/afhints.c#L121>
if widths.is_empty() {
widths.push(0);
}
// The value 100 is heuristic
metrics::sort_and_quantize_widths(widths, units_per_em / 100);
}
}
}
for (metrics, widths) in result.iter_mut() {
// Now set derived values
let stdw = widths
.first()
.copied()
.unwrap_or_else(|| super::derived_constant(units_per_em, 50));
// Heuristic value of 20% of the smallest width
metrics.edge_distance_threshold = stdw / 5;
metrics.standard_width = stdw;
metrics.is_extra_light = false;
}
result
}
#[cfg(test)]
mod tests {
use super::{
super::super::{shape::ShaperMode, style},
*,
};
use raw::FontRef;
#[test]
fn computed_widths() {
// Expected data produced by internal routines in FreeType. Scraped
// from a debugger
check_widths(
font_test_data::NOTOSERIFHEBREW_AUTOHINT_METRICS,
super::ScriptClass::HEBR,
[
(
WidthMetrics {
edge_distance_threshold: 10,
standard_width: 54,
is_extra_light: false,
},
&[54],
),
(
WidthMetrics {
edge_distance_threshold: 4,
standard_width: 21,
is_extra_light: false,
},
&[21, 109],
),
],
);
}
#[test]
fn fallback_widths() {
// Expected data produced by internal routines in FreeType. Scraped
// from a debugger
check_widths(
font_test_data::CANTARELL_VF_TRIMMED,
super::ScriptClass::LATN,
[
(
WidthMetrics {
edge_distance_threshold: 4,
standard_width: 24,
is_extra_light: false,
},
&[],
),
(
WidthMetrics {
edge_distance_threshold: 4,
standard_width: 24,
is_extra_light: false,
},
&[],
),
],
);
}
#[test]
fn cjk_computed_widths() {
// Expected data produced by internal routines in FreeType. Scraped
// from a debugger
check_widths(
font_test_data::NOTOSERIFTC_AUTOHINT_METRICS,
super::ScriptClass::HANI,
[
(
WidthMetrics {
edge_distance_threshold: 13,
standard_width: 65,
is_extra_light: false,
},
&[65],
),
(
WidthMetrics {
edge_distance_threshold: 5,
standard_width: 29,
is_extra_light: false,
},
&[29],
),
],
);
}
fn check_widths(font_data: &[u8], script_class: usize, expected: [(WidthMetrics, &[i32]); 2]) {
let font = FontRef::new(font_data).unwrap();
let shaper = Shaper::new(&font, ShaperMode::Nominal);
let script = &style::SCRIPT_CLASSES[script_class];
let [(hori_metrics, hori_widths), (vert_metrics, vert_widths)] =
compute_widths(&shaper, Default::default(), script);
assert_eq!(hori_metrics, expected[0].0);
assert_eq!(hori_widths.as_slice(), expected[0].1);
assert_eq!(vert_metrics, expected[1].0);
assert_eq!(vert_widths.as_slice(), expected[1].1);
}
}