@mapbox/tiny-sdf

WebJar for @mapbox/tiny-sdf

License

License

BSD 2-Clause
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

mapbox__tiny-sdf
Last Version

Last Version

1.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

@mapbox/tiny-sdf
WebJar for @mapbox/tiny-sdf
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/mapbox/tiny-sdf

Download mapbox__tiny-sdf

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/mapbox__tiny-sdf/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>mapbox__tiny-sdf</artifactId>
    <version>1.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/mapbox__tiny-sdf/
implementation 'org.webjars.npm:mapbox__tiny-sdf:1.1.1'
// https://jarcasting.com/artifacts/org.webjars.npm/mapbox__tiny-sdf/
implementation ("org.webjars.npm:mapbox__tiny-sdf:1.1.1")
'org.webjars.npm:mapbox__tiny-sdf:jar:1.1.1'
<dependency org="org.webjars.npm" name="mapbox__tiny-sdf" rev="1.1.1">
  <artifact name="mapbox__tiny-sdf" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='mapbox__tiny-sdf', version='1.1.1')
)
libraryDependencies += "org.webjars.npm" % "mapbox__tiny-sdf" % "1.1.1"
[org.webjars.npm/mapbox__tiny-sdf "1.1.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

TinySDF

TinySDF is a tiny and fast JavaScript library for generating SDF (signed distance field) from system fonts on the browser using Canvas 2D and Felzenszwalb/Huttenlocher distance transform. This is very useful for rendering text with WebGL.

This implementation is based directly on the algorithm published in the Felzenszwalb/Huttenlocher paper, and is not a port of the existing C++ implementation provided by the paper's authors.

Demo: http://mapbox.github.io/tiny-sdf/

Usage

Create a TinySDF for drawing SDFs based on font parameters:

var fontsize = 24; // Font size in pixels
var buffer = 3;    // Whitespace buffer around a glyph in pixels
var radius = 8;    // How many pixels around the glyph shape to use for encoding distance
var cutoff = 0.25  // How much of the radius (relative) is used for the inside part the glyph

var fontFamily = 'sans-serif'; // css font-family
var fontWeight = 'normal';     // css font-weight
var tinySDFGenerator = new TinySDF(fontsize, buffer, radius, cutoff, fontFamily, fontWeight);

var oneSDF = tinySDFGenerator.draw('泽');
// returns a Uint8ClampedArray array of alpha values (0–255) for a size x size square grid
org.webjars.npm

Mapbox

Mapbox is the location data platform for mobile and web applications. We're changing the way people move around cities and explore our world.

Versions

Version
1.1.1
1.1.0