14 releases

0.2.3 Jul 16, 2021
0.2.1 Oct 30, 2020
0.2.0 May 23, 2020
0.1.9 Feb 20, 2020
0.1.2 Sep 21, 2018

#6 in Data formats

Download history 14476/week @ 2023-10-17 15593/week @ 2023-10-24 15055/week @ 2023-10-31 14493/week @ 2023-11-07 14384/week @ 2023-11-14 13697/week @ 2023-11-21 14152/week @ 2023-11-28 14213/week @ 2023-12-05 13342/week @ 2023-12-12 12770/week @ 2023-12-19 11521/week @ 2023-12-26 13254/week @ 2024-01-02 15486/week @ 2024-01-09 17507/week @ 2024-01-16 16387/week @ 2024-01-23 12787/week @ 2024-01-30

64,777 downloads per month
Used in 327 crates (8 directly)

Apache-2.0

65KB
1.5K SLoC

glyph_brush_layout crates.io Documentation

Text layout for ab_glyph.

  • Generic positioning & linebreaking traits.
  • Built-in layout logic:
    • Mixed font & scale sections in a single layout.
    • Horizontal align left/center/right.
    • Vertical align top/center/bottom.
    • Unicode line breaking.
    • Bounded layouts.
use glyph_brush_layout::{ab_glyph::*, *};

let dejavu = FontRef::try_from_slice(include_bytes!("../../fonts/DejaVuSans.ttf"))?;
let garamond = FontRef::try_from_slice(include_bytes!("../../fonts/GaramondNo8-Reg.ttf"))?;

// Simple font mapping: FontId(0) -> deja vu sans, FontId(1) -> garamond
let fonts = &[dejavu, garamond];

// Layout "hello glyph_brush_layout" on an unbounded line with the second
// word suitably bigger, greener and serif-ier.
let glyphs = Layout::default().calculate_glyphs(
    fonts,
    &SectionGeometry {
        screen_position: (150.0, 50.0),
        ..SectionGeometry::default()
    },
    &[
        SectionText {
            text: "hello ",
            scale: PxScale::from(20.0),
            font_id: FontId(0),
        },
        SectionText {
            text: "glyph_brush_layout",
            scale: PxScale::from(25.0),
            font_id: FontId(1),
        },
    ],
);

assert_eq!(glyphs.len(), 24);

let SectionGlyph { glyph, font_id, section_index, byte_index } = &glyphs[4];
assert_eq!(glyph.id, fonts[0].glyph_id('o'));
assert_eq!(*font_id, FontId(0));
assert_eq!(*section_index, 0);
assert_eq!(*byte_index, 4);

let SectionGlyph { glyph, font_id, section_index, byte_index } = &glyphs[14];
assert_eq!(glyph.id, fonts[1].glyph_id('u'));
assert_eq!(*font_id, FontId(1));
assert_eq!(*section_index, 1);
assert_eq!(*byte_index, 8);

Dependencies

~1.5MB
~23K SLoC