3 unstable releases

0.2.1 Jan 23, 2024
0.2.0 Jan 4, 2024
0.1.0 Dec 21, 2023

#38 in Rendering

Download history 7/week @ 2023-12-31 23/week @ 2024-01-21 43/week @ 2024-02-18 57/week @ 2024-02-25 23/week @ 2024-03-03 120/week @ 2024-03-10 20/week @ 2024-03-17 27/week @ 2024-03-24 58/week @ 2024-03-31 12/week @ 2024-04-07 21/week @ 2024-04-14

120 downloads per month
Used in tgf

MIT license

42KB
925 lines

SDF ("Signed Distance Field") generation algorithms

Crates.io Docs

Algorithms

Currently, this library contains these SDF generation algorithms:

  • sdfer::bruteforce_bitmap: bitmap-based "closest opposite-color pixel" bruteforce search
  • sdfer::esdt: "Euclidean Subpixel Distance Transform"
    • this is a Rust port of the original JS implementation, from the @use-gpu/glyph npm package
    • the https://acko.net/blog/subpixel-distance-transform/ blog post explains how the older EDT ("Euclidean Distance Transform") algorithm was modified to better use the information present in e.g. grayscale AA rasterization of glyphs (where "grayscale AA" is really an alpha channel encoding of per-pixel coverage)
    • scales (roughly) linearly with the number of output pixels (which are 1:1 with input pixels, so no oversized rasterization required either), making it far more viable than most other algorithms, for on-demand runtime glyph->SDF conversion
      (e.g. to avoid pixel-snapping text during scrolling/panning, to allow some amount of smooth pinch-zooming before needing larger rasterizations, etc.)

License

Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).

_Note: this is MIT-only, instead of the common dual-licensing, mainly due to the ESDT algorithm implementation being a port of the JS code from the @use-gpu/glyph npm package, which itself is MIT-licensed._

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, shall be licensed as MIT, without any additional terms or conditions.

Dependencies

~0–2.8MB
~11K SLoC