Multi-channel signed distance field generator

#gamedev #c++ #cpp #application #devtools #tooling #sdf

Viktor Chlumský ed734a491d Interpolation error correction WIP 5 anni fa
bin 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
core ed734a491d Interpolation error correction WIP 5 anni fa
ext e93c8d988c Added MTSDF mode 5 anni fa
freetype 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
include 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
lib 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
.gitignore 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
CHANGELOG.md 5427fe8f5a Version 1.7 5 anni fa
CMakeLists.txt 6f67a32529 Add headers that were missed so they are included in IDE projects. 8 anni fa
LICENSE.txt 8a0388dadf Version 1.1 - License change 9 anni fa
Msdfgen.rc 61d3929db0 Version 1.0 9 anni fa
Msdfgen.sln 4f3a0d620f V1.6: Core algorithm refactor, pseudo-distance evaluation rework, error correction update, scanline rasterization and distance sign correction, dependencies update 6 anni fa
Msdfgen.vcxproj ed734a491d Interpolation error correction WIP 5 anni fa
Msdfgen.vcxproj.filters ed734a491d Interpolation error correction WIP 5 anni fa
README.md e93c8d988c Added MTSDF mode 5 anni fa
icon.ico 61d3929db0 Version 1.0 9 anni fa
main.cpp ed734a491d Interpolation error correction WIP 5 anni fa
msdfgen-ext.h 5427fe8f5a Version 1.7 5 anni fa
msdfgen.h ed734a491d Interpolation error correction WIP 5 anni fa
resource.h 61d3929db0 Version 1.0 9 anni fa

README.md

Multi-channel signed distance field generator

This is a utility for generating signed distance fields from vector shapes and font glyphs, which serve as a texture representation that can be used in real-time graphics to efficiently reproduce said shapes. Although it can also be used to generate conventional signed distance fields best known from this Valve paper and pseudo-distance fields, its primary purpose is to generate multi-channel distance fields, using a method I have developed. Unlike monochrome distance fields, they have the ability to reproduce sharp corners almost perfectly by utilizing all three color channels.

The following comparison demonstrates the improvement in image quality.

demo-msdf16 demo-sdf16 demo-sdf32

Getting started

The project can be used either as a library or as a console program. It is divided into two parts, core and extensions. The core module has no dependencies and only uses bare C++. It contains all key data structures and algorithms, which can be accessed through the msdfgen.h header. Extensions contain utilities for loading fonts and SVG files, as well as saving PNG images. Those are exposed by the msdfgen-ext.h header. This module uses FreeType, TinyXML2, and LodePNG.

Additionally, there is the main.cpp, which wraps the functionality into a comprehensive standalone console program. To start using the program immediately, there is a Windows binary available for download in the "Releases" section. To build the project, you may use the included Visual Studio solution or CMake script.

Console commands

The standalone program is executed as

msdfgen.exe <mode> <input> <options>

where only the input specification is required.

Mode can be one of:

  • sdf – generates a conventional monochrome (true) signed distance field.
  • psdf – generates a monochrome signed pseudo-distance field.
  • msdf (default) – generates a multi-channel signed distance field using my new method.
  • mtsdf – generates a combined multi-channel and true signed distance field in the alpha channel.

The input can be specified as one of:

  • -font <filename.ttf> <character code> – to load a glyph from a font file. Character code can be expressed as either a decimal (63) or hexadecimal (0x3F) Unicode value, or an ASCII character in single quotes ('?').
  • -svg <filename.svg> – to load an SVG file. Note that only the last vector path in the file will be used.
  • -shapedesc <filename.txt>, -defineshape <definition>, -stdin – to load a text description of the shape from either a file, the next argument, or the standard input, respectively. Its syntax is documented further down.

The complete list of available options can be printed with -help. Some of the important ones are:

  • -o <filename> – specifies the output file name. The desired format will be deduced from the extension (png, bmp, tif, txt, bin). Otherwise, use -format.
  • -size <width> <height> – specifies the dimensions of the output distance field (in pixels).
  • -range <range>, -pxrange <range> – specifies the width of the range around the shape between the minimum and maximum representable signed distance in shape units or distance field pixels, respectivelly.
  • -scale <scale> – sets the scale used to convert shape units to distance field pixels.
  • -translate <x> <y> – sets the translation of the shape in shape units. Otherwise the origin (0, 0) lies in the bottom left corner.
  • -autoframe – automatically frames the shape to fit the distance field. If the output must be precisely aligned, you should manually position it using -translate and -scale instead.
  • -angle <angle> – specifies the maximum angle to be considered a corner. Can be expressed in radians (3.0) or degrees with D at the end (171.9D).
  • -testrender <filename.png> <width> <height> - tests the generated distance field by using it to render an image of the original shape into a PNG file with the specified dimensions. Alternatively, -testrendermulti renders an image without combining the color channels, and may give you an insight in how the multi-channel distance field works.
  • -exportshape <filename.txt> - saves the text description of the shape with edge coloring to the specified file. This can be later edited and used as input through -shapedesc.
  • -printmetrics – prints some useful information about the shape's layout.

For example,

msdfgen.exe msdf -font C:\Windows\Fonts\arialbd.ttf 'M' -o msdf.png -size 32 32 -pxrange 4 -autoframe -testrender render.png 1024 1024

will take the glyph capital M from the Arial Bold typeface, generate a 32×32 multi-channel distance field with a 4 pixels wide distance range, store it into msdf.png, and create a test render of the glyph as render.png.

Note: Do not use -autoframe to generate character maps! It is intended as a quick preview only.

Library API

If you choose to use this utility inside your own program, there are a few simple steps you need to perform in order to generate a distance field. Please note that all classes and functions are in the msdfgen namespace.

  • Acquire a Shape object. You can either load it via loadGlyph or loadSvgShape, or construct it manually. It consists of closed contours, which in turn consist of edges. An edge is represented by a LinearEdge, QuadraticEdge, or CubicEdge. You can construct them from two endpoints and 0 to 2 Bézier control points.
  • Normalize the shape using its normalize method and assign colors to edges if you need a multi-channel SDF. This can be performed automatically using the edgeColoringSimple heuristic, or manually by setting each edge's color member. Keep in mind that at least two color channels must be turned on in each edge, and iff two edges meet at a sharp corner, they must only have one channel in common.
  • Call generateSDF, generatePseudoSDF, or generateMSDF to generate a distance field into a floating point Bitmap object. This can then be worked with further or saved to a file using saveBmp, savePng, or saveTiff.
  • You may also render an image from the distance field using renderSDF. Consider calling simulate8bit on the distance field beforehand to simulate the standard 8 bits/channel image format.

Example:

#include "msdfgen.h"
#include "msdfgen-ext.h"

using namespace msdfgen;

int main() {
    FreetypeHandle *ft = initializeFreetype();
    if (ft) {
        FontHandle *font = loadFont(ft, "C:\\Windows\\Fonts\\arialbd.ttf");
        if (font) {
            Shape shape;
            if (loadGlyph(shape, font, 'A')) {
                shape.normalize();
                //                      max. angle
                edgeColoringSimple(shape, 3.0);
                //           image width, height
                Bitmap<float, 3> msdf(32, 32);
                //                     range, scale, translation
                generateMSDF(msdf, shape, 4.0, 1.0, Vector2(4.0, 4.0));
                savePng(msdf, "output.png");
            }
            destroyFont(font);
        }
        deinitializeFreetype(ft);
    }
    return 0;
}

Using a multi-channel distance field

Using a multi-channel distance field generated by this program is similarly simple to how a monochrome distance field is used. The only additional operation is computing the median of the three channels inside the fragment shader, right after sampling the distance field. This signed distance value can then be used the same way as usual.

The following is an example GLSL fragment shader including anti-aliasing:

in vec2 pos;
out vec4 color;
uniform sampler2D msdf;
uniform float pxRange;
uniform vec4 bgColor;
uniform vec4 fgColor;

float median(float r, float g, float b) {
    return max(min(r, g), min(max(r, g), b));
}

void main() {
    vec2 msdfUnit = pxRange/vec2(textureSize(msdf, 0));
    vec3 sample = texture(msdf, pos).rgb;
    float sigDist = median(sample.r, sample.g, sample.b) - 0.5;
    sigDist *= dot(msdfUnit, 0.5/fwidth(pos));
    float opacity = clamp(sigDist + 0.5, 0.0, 1.0);
    color = mix(bgColor, fgColor, opacity);
}

Note: This is an example shader only and probably is not optimal for your use case! Please do not blindly copy & paste.

Shape description syntax

The text shape description has the following syntax.

  • Each closed contour is enclosed by braces: { <contour 1> } { <contour 2> }
  • Each point (and control point) is written as two real numbers separated by a comma.
  • Points in a contour are separated with semicolons.
  • The last point of each contour must be equal to the first, or the symbol # can be used, which represents the first point.
  • There can be an edge segment specification between any two points, also separated by semicolons. This can include the edge's color (c, m, y or w) and/or one or two Bézier curve control points inside parentheses.

For example,

{ -1, -1; m; -1, +1; y; +1, +1; m; +1, -1; y; # }

would represent a square with magenta and yellow edges,

{ 0, 1; (+1.6, -0.8; -1.6, -0.8); # }

is a teardrop shape formed by a single cubic Bézier curve.