4 个版本

使用旧 Rust 2015

0.0.4 2016年10月28日
0.0.3 2016年5月16日
0.0.2 2016年5月16日
0.0.1 2015年8月30日

#19 in #text-layout

Apache-2.0/MIT

165KB

文本 Version Status

该软件包提供文本工具箱。

文档

示例

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();

贡献

您的贡献非常受重视。请不要犹豫,提出问题或拉取请求。请注意,提交给项目的任何贡献都将根据LICENSE.md中给出的条款进行授权。


lib.rs:

文本工具箱。

示例

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();

依赖项

~445KB
~11K SLoC