Fork of Pixie for nimskull and with extra features
Go to file
2021-02-13 20:13:58 -08:00
.github/workflows Initial commit 2020-11-19 18:41:32 -08:00
examples updated exmaples, bugfix 2021-02-08 23:07:46 -06:00
experiments f 2021-02-13 20:52:53 -06:00
src blends exports 2021-02-13 20:57:58 -06:00
tests drawCorrect vs drawUber benchmark. 2021-02-13 20:13:58 -08:00
tools Better readme. 2020-12-04 09:41:28 -08:00
.gitignore ignore dll 2020-12-09 23:49:00 -06:00
LICENSE First commit 2020-11-19 18:45:26 -08:00
pixie.nimble nimsimd dep 2021-01-27 02:07:21 -06:00
README.md updated exmaples, bugfix 2021-02-08 23:07:46 -06:00

Pixie - A full-featured 2D graphics library for Nim

⚠️ WARNING: This library is still in heavy development. ⚠️

Pixie is a 2D graphics library similar to Cairo and Skia written (almost) entirely in Nim.

Features include:

  • Drawing paths, shapes and curves
  • Complex masking
  • Shadows, glows and effects
  • Loading image file formats (PNG, BMP, JPG, SVG + more in development)

This library is being actively developed and is not yet ready for use. Since you've managed to stumble onto it, give it a star and check back soon!

Testing

nimble test

Examples

Blur

examples/blur.nim

var p: Path
p.polygon(100, 100, 70, sides=6)
p.closePath()

let mask = newMask(200, 200)
mask.fillPath(p)

blur.blur(20)
blur.draw(mask, blendMode = bmMask)

image.draw(trees)
image.draw(blur)

example output

Rounded rectangle

examples/rounded_rectangle.nim

let
  x = 50.0
  y = 50.0
  w = 100.0
  h = 100.0
  r = 25.0

var path: Path
path.roundedRect(vec2(x, y), vec2(w, h), r, r, r, r)

image.fillPath(path, rgba(255, 0, 0, 255))

example output

Square

examples/square.nim

var p: Path
p.rect(50, 50, 100, 100)

image.fillPath(p, rgba(255, 0, 0, 255))

example output

Tiger

examples/tiger.nim

let tiger = readImage("examples/data/tiger.svg")

image.draw(
  tiger,
  translate(vec2(100, 100)) *
  scale(vec2(0.2, 0.2)) *
  translate(vec2(-450, -450))
)

example output