4 releases (2 breaking)

0.3.0 May 5, 2022
0.2.1 Apr 6, 2022
0.1.1 Apr 5, 2022
0.1.0 Apr 5, 2022

#1928 in Parser implementations

Download history 57/week @ 2023-11-13 15/week @ 2023-11-20 21/week @ 2023-11-27 1/week @ 2023-12-04 37/week @ 2023-12-11 92/week @ 2023-12-18 32/week @ 2023-12-25 156/week @ 2024-01-01 104/week @ 2024-01-08 167/week @ 2024-01-15 38/week @ 2024-01-22 110/week @ 2024-01-29 61/week @ 2024-02-05 64/week @ 2024-02-19 42/week @ 2024-02-26

168 downloads per month
Used in 3 crates

Apache-2.0

73KB
1.5K SLoC

woff2

woff2 is a crate for converting WOFF2 font files to OpenType fonts.

Examples

use woff2::decode::{convert_woff2_to_ttf, is_woff2};

let buffer = std::fs::read("src/test_resources/lato-v22-latin-regular.woff2").unwrap();
assert!(is_woff2(&buffer));
let ttf = convert_woff2_to_ttf(&mut std::io::Cursor::new(buffer)).unwrap();
// ... use `ttf` however you would use a loaded TTF file

Command line utility

The decoder example is a simple command-line application to convert a WOFF2 font to OpenType format:

cargo run --example decoder input-filename.woff2 output-filename.ttf

Unimplemented features / known issues

  • WOFF2 fonts with hmtx transformations are not yet supported. It seems like these transformations are rare and we haven't found one yet. You can help by submitting a sample font that has them.
  • WOFF (the original WOFF format) is not supported
  • Converting OpenType to WOFF2 is not supported yet.

Acknowledgements

License

Copyright 2022 Cimpress

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Dependencies

~7.5MB
~185K SLoC