#font #toolbox #layout #text-layout

text

The package provides a text toolbox

4 releases

Uses old Rust 2015

0.0.4 Oct 28, 2016
0.0.3 May 16, 2016
0.0.2 May 16, 2016
0.0.1 Aug 30, 2015

#19 in #text-layout

Apache-2.0/MIT

165KB

Text Version Status

The package provides a text toolbox.

Documentation

Example

extern crate font;
extern crate text;

use font::File;
use text::Layout;

let path = "SourceSerifPro-Regular.otf";
let font = File::open(path).unwrap().fonts.remove(0);

let mut layout = Layout::new(font);
let text = layout.draw("The quick brown fox jumps over the lazy dog.").unwrap();

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.


lib.rs:

Text toolbox.

Example

extern crate font;
extern crate text;

use font::File;
use text::Layout;

let path = "SourceSerifPro-Regular.otf";
let font = File::open(path).unwrap().fonts.remove(0);

let mut layout = Layout::new(font);
let text = layout.draw("The quick brown fox jumps over the lazy dog.").unwrap();

Dependencies

~405KB
~10K SLoC