use ttf_parser as ttf;
use svgtypes::WriteBuffer;
const FONT_SIZE: f64 = 128.0;
const COLUMNS: u32 = 50;
fn main() {
if let Err(e) = process() {
eprintln!("Error: {}.", e);
std::process::exit(1);
}
}
fn process() -> Result<(), Box<dyn std::error::Error>> {
let args: Vec<_> = std::env::args().collect();
if args.len() != 3 {
println!("Usage:\n\tfont2svg font.ttf out.svg");
std::process::exit(1);
}
let font_data = std::fs::read(&args[1])?;
let start = time::precise_time_ns();
let font = ttf::Font::from_data(&font_data, 0)?;
let units_per_em = font.units_per_em().ok_or("invalid units per em")?;
let scale = FONT_SIZE / units_per_em as f64;
let cell_size = font.height() as f64 * FONT_SIZE / units_per_em as f64;
let rows = (font.number_of_glyphs() as f64 / COLUMNS as f64).ceil() as u32;
let mut svg = xmlwriter::XmlWriter::with_capacity(
font.number_of_glyphs() as usize * 512,
xmlwriter::Options::default(),
);
svg.start_element("svg");
svg.write_attribute("xmlns", "http://www.w3.org/2000/svg");
svg.write_attribute_fmt(
"viewBox",
format_args!("{} {} {} {}", 0, 0, cell_size * COLUMNS as f64, cell_size * rows as f64),
);
draw_grid(font.number_of_glyphs(), cell_size, &mut svg);
let mut path_buf = svgtypes::Path::with_capacity(64);
let mut row = 0;
let mut column = 0;
for id in 0..font.number_of_glyphs() {
glyph_to_path(
column as f64 * cell_size,
row as f64 * cell_size,
&font,
ttf::GlyphId(id),
cell_size,
scale,
&mut svg,
&mut path_buf,
);
column += 1;
if column == COLUMNS {
column = 0;
row += 1;
}
}
let end = time::precise_time_ns();
println!("Elapsed: {:.2}ms", (end - start) as f64 / 1_000_000.0);
std::fs::write(&args[2], &svg.end_document())?;
Ok(())
}
fn draw_grid(
n_glyphs: u16,
cell_size: f64,
svg: &mut xmlwriter::XmlWriter,
) {
let columns = COLUMNS;
let rows = (n_glyphs as f64 / columns as f64).ceil() as u32;
let width = columns as f64 * cell_size;
let height = rows as f64 * cell_size;
svg.start_element("path");
svg.write_attribute("fill", "none");
svg.write_attribute("stroke", "black");
svg.write_attribute("stroke-width", "5");
let mut path = svgtypes::Path::with_capacity(256);
let mut x = 0.0;
for _ in 0..=columns {
path.push_move_to(x, 0.0);
path.push_line_to(x, height);
x += cell_size;
}
let mut y = 0.0;
for _ in 0..=rows {
path.push_move_to(0.0, y);
path.push_line_to(width, y);
y += cell_size;
}
svg.write_attribute_raw("d", |buf| path.write_buf(buf));
svg.end_element();
}
fn glyph_to_path(
x: f64,
y: f64,
font: &ttf::Font,
glyph_id: ttf::GlyphId,
cell_size: f64,
scale: f64,
svg: &mut xmlwriter::XmlWriter,
path_buf: &mut svgtypes::Path,
) {
svg.start_element("text");
svg.write_attribute("x", &(x + 2.0));
svg.write_attribute("y", &(y + cell_size - 4.0));
svg.write_attribute("font-size", "36");
svg.write_attribute("fill", "gray");
svg.write_text_fmt(format_args!("{}", glyph_id.0));
svg.end_element();
path_buf.clear();
let mut builder = Builder(path_buf);
let bbox = match font.outline_glyph(glyph_id, &mut builder) {
Ok(v) => v,
Err(ttf::Error::NoOutline) => return,
Err(ttf::Error::NoGlyph) => return,
Err(e) => {
eprintln!("Warning (glyph {}): {}.", glyph_id.0, e);
return;
}
};
let metrics = match font.glyph_hor_metrics(glyph_id) {
Ok(v) => v,
Err(_) => return,
};
let dx = (cell_size - metrics.advance as f64 * scale) / 2.0;
let y = y + cell_size + font.descender() as f64 * scale;
let mut ts = svgtypes::Transform::default();
ts.translate(x + dx, y);
ts.scale(1.0, -1.0);
ts.scale(scale, scale);
svg.start_element("path");
svg.write_attribute_raw("d", |buf| path_buf.write_buf(buf));
svg.write_attribute_raw("transform", |buf| ts.write_buf(buf));
svg.end_element();
{
let bbox_w = (bbox.x_max as f64 - bbox.x_min as f64) * scale;
let bbox_h = (bbox.y_max as f64 - bbox.y_min as f64) * scale;
let bbox_x = x + dx + bbox.x_min as f64 * scale;
let bbox_y = y - bbox.y_min as f64 * scale - bbox_h;
svg.start_element("rect");
svg.write_attribute("x", &bbox_x);
svg.write_attribute("y", &bbox_y);
svg.write_attribute("width", &bbox_w);
svg.write_attribute("height", &bbox_h);
svg.write_attribute("fill", "none");
svg.write_attribute("stroke", "green");
svg.end_element();
}
}
struct Builder<'a>(&'a mut svgtypes::Path);
impl ttf::OutlineBuilder for Builder<'_> {
fn move_to(&mut self, x: f32, y: f32) {
self.0.push_move_to(x as f64, y as f64);
}
fn line_to(&mut self, x: f32, y: f32) {
self.0.push_line_to(x as f64, y as f64);
}
fn quad_to(&mut self, x1: f32, y1: f32, x: f32, y: f32) {
self.0.push_quad_to(x1 as f64, y1 as f64, x as f64, y as f64);
}
fn curve_to(&mut self, x1: f32, y1: f32, x2: f32, y2: f32, x: f32, y: f32) {
self.0.push_curve_to(x1 as f64, y1 as f64, x2 as f64, y2 as f64, x as f64, y as f64);
}
fn close(&mut self) {
self.0.push_close_path();
}
}