All Projects → bodoni → font

bodoni / font

Licence: other
Font toolbox

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to font

Sprat-type
Display typeface
Stars: ✭ 58 (+314.29%)
Mutual labels:  typeface, typography
typeface-minecraft
Minecraft typeface and colors
Stars: ✭ 20 (+42.86%)
Mutual labels:  typeface, typography
Otfcc
Optimized OpenType builder and inspector.
Stars: ✭ 348 (+2385.71%)
Mutual labels:  typeface, typography
Awesome Typography
✏︎ Curated list about digital typography 🔥
Stars: ✭ 947 (+6664.29%)
Mutual labels:  typeface, typography
Plusjakartasans
+Jakarta Sans is a open-source fonts. Designed for Jakarta "City of collaboration" program in 2020.
Stars: ✭ 136 (+871.43%)
Mutual labels:  typeface, typography
Google Type
Collaborative typography project using select passages from Aesop's Fables set to Google Fonts
Stars: ✭ 971 (+6835.71%)
Mutual labels:  typeface, typography
Qiji Font
齊伋體 - typeface from Ming Dynasty woodblock printed books
Stars: ✭ 536 (+3728.57%)
Mutual labels:  typeface, typography
Typefaces
NPM packages for Open Source typefaces
Stars: ✭ 2,581 (+18335.71%)
Mutual labels:  typeface, typography
Urbanist
Urbanist is a low-contrast, geometric sans-serif inspired by Modernist design and typography.
Stars: ✭ 374 (+2571.43%)
Mutual labels:  typeface, typography
TextLayoutSampler
Utility to display text via multiple Windows API's simultaneously (D2D, DWrite, GDI, GDI+).
Stars: ✭ 22 (+57.14%)
Mutual labels:  typography
plex
The package of IBM’s typeface, IBM Plex.
Stars: ✭ 7,977 (+56878.57%)
Mutual labels:  typeface
ufolint
UFO source format linter
Stars: ✭ 23 (+64.29%)
Mutual labels:  typeface
Trispace
2 axes/variable/mostly monospace
Stars: ✭ 49 (+250%)
Mutual labels:  typography
ttf2hershey
Convert True Type Fonts (.ttf) to Hershey vector fonts
Stars: ✭ 29 (+107.14%)
Mutual labels:  typography
ukrainian-typographic-keyboard
Combined Ukrainian keyboard layout with typographic symbols
Stars: ✭ 356 (+2442.86%)
Mutual labels:  typography
acf-typography
A Typography Add-on for the Advanced Custom Fields Plugin
Stars: ✭ 14 (+0%)
Mutual labels:  typography
craft-typogrify
Typogrify prettifies your web typography by preventing ugly quotes and 'widows' and more
Stars: ✭ 70 (+400%)
Mutual labels:  typography
Bellota-Font
An ornamented Sans Serif font family
Stars: ✭ 21 (+50%)
Mutual labels:  typography
TextViewPlus
an android library for setting custom font in xml layout
Stars: ✭ 27 (+92.86%)
Mutual labels:  typeface
Material-Design-Android
My stash for all things material, animations, typography, iconography, transitions, Animated VD, Color Palette API, UI design, and more.
Stars: ✭ 38 (+171.43%)
Mutual labels:  typography

Font Package Documentation Build

The package provides a font toolbox.

Example

use font::{Font, Segment};

let path = "SourceSerifPro-Regular.otf";
let font = Font::open(path).unwrap();
let glyph = font.draw('&').unwrap().unwrap();
for contour in glyph.iter() {
    for segment in contour.iter() {
        match segment {
            &Segment::Linear(..) => { /* … */ },
            &Segment::Quadratic(..) => { /* … */ },
            &Segment::Cubic(..) => { /* … */ },
        }
    }
}

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a pull request. Note that any contribution submitted for inclusion in the project will be licensed according to the terms given in LICENSE.md.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].