Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitmap-sdf

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitmap-sdf

Calculate SDF for image/bw-data/array

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

bitmap-sdf unstable

Calculate signed distance field for an image / bw-data. Fork of tiny-sdf with reduced API.

bitmap-sdf

Demo

Usage

npm install bitmap-sdf

let calcSdf = requrie('bitmap-sdf')

//draw image
let canvas = document.body.appendChild(document.createElement('canvas'))
let w = canvas.width = 200, h = canvas.height = 200
let ctx = canvas.getContext('2d')
ctx.fillStyle = 'white'
ctx.font = 'bold 30px sans-serif'
ctx.fillText('X', 20, 20)

//calculate distances
let distances = calcSdf(canvas)

//show distances
let imgArr = new Uint8ClampedArray(w*h*4)
for (let i = 0; i < w; i++) {
	for (let j = 0; j < h; j++) {
		imgArr[j*w*4 + i*4 + 0] = arr[j*w+i]*255
		imgArr[j*w*4 + i*4 + 1] = arr[j*w+i]*255
		imgArr[j*w*4 + i*4 + 2] = arr[j*w+i]*255
		imgArr[j*w*4 + i*4 + 3] = 255
	}
}
var data = new ImageData(imgArr, w, h)
ctx.putImageData(data, 0, 0)

dist = calcSdf(source, options?)

Calculate distance field for the input source data, based on options. Returns 1-channel array with distance values from 0..1 range.

Source:
TypeMeaning
Canvas, Context2DCalculates sdf for the full canvas image data based on options.channel, by default 0, ie. red channel.
ImageDataCalculates sdf for the image data based on options.channel
Uint8ClampedArray, Uint8ArrayHandles raw pixel data, requires options.width and options.height. Stride is detected from width and height.
Float32Array, ArrayHandles raw numbers from 0..1 range, requires options.width and options.height. Stride is detected from width and height.
Options:
PropertyDefaultMeaning
cutoff0.25Cutoff parameter, balance between SDF inside 1 and outside 0 of glyph
radius10Max length of SDF, ie. the size of SDF around the cutoff
widthcanvas.widthWidth of input data, if array
heightcanvas.heightHeight of input data, if array
channel0Channel number, 0 is red, 1 is green, 2 is blue, 3 is alpha.
stridenullExplicitly indicate number of channels per pixel. Not needed if height and width are provided.

See also

  • font-atlas-sdf − generate sdf atlas for a font.
  • tiny-sdf − fast glyph signed distance field generation.
  • optical-properties − glyph optical center and bounding box calculation

Alternatives

License

(c) 2017 Dima Yv. MIT License

Development supported by plot.ly.

Keywords

FAQs

Package last updated on 02 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc