#image #convert-images #sdf #gamedev #vector #vector-graphics

distance-field

Generate distance fields from images for pseudo-vector rendering

11 releases

0.2.1 Feb 9, 2024
0.2.0 Oct 10, 2022
0.1.8 Oct 9, 2022
0.1.7 Jul 29, 2019
0.1.5 Dec 28, 2017

#53 in Rendering

Download history 39/week @ 2024-02-19 20/week @ 2024-02-26 31/week @ 2024-03-11 56/week @ 2024-04-01

87 downloads per month
Used in omt

GPL-3.0 license

29KB
83 lines

distance-field

Build Status Crates.io Documentation License: GPL-3.0 Downloads

Documentation

Generate distance field bitmaps for rendering as pseudo-vector images in shaders.

An example usecase for the library would be to automatically convert asset images. You can achieve this by having a build.rs similar to this:

use std::fs::File;
use distance_field::DistanceFieldExt;

fn convert_image_to_dfield(input: &str, output: &str) {
    // Load the 'input' image
    let img = image::open(input).unwrap();

    // Generate a distance field from the image
    let outbuf = img.grayscale().distance_field(distance_field::Options {
        size: (128, 128),
        max_distance: 256,
        ..Default::default()
    });

    // Save it to 'output' as a PNG
    image::DynamicImage::ImageLuma8(outbuf).save(output).unwrap();
}

fn main() {
    convert_image_to_dfield("img/input.png", "output.png");
}

Generator binary

Checkout the repository and cd into it; then run:

cargo run --example generator -- img/input.png output.png 64 64

This will take the following image as input:

Rust logo

And generate a 64x64 distance field:

Distance field

Now we can use the generated distance field to create a vector image.

Using the distance field

First we need to scale it up with a linear interpolation:

Upscaled linear

Then we apply a treshold function:

Treshold

You can see that we have something which looks very similar to the original input image and that just from a 64x64 image! But it's still very pixelated and doesn't look like a vector image. This can be fixed by not doing a hard treshold but allowing some shades of gray.

Dependencies

~14MB
~83K SLoC