Fork of Pixie for nimskull and with extra features
Go to file
treeform bdf8e5601d
Merge pull request #112 from guzba/master
remove windingrule param from stroke proc
2021-02-18 11:25:37 -08:00
.github/workflows Initial commit 2020-11-19 18:41:32 -08:00
examples Add line example. 2021-02-18 10:14:55 -08:00
experiments trapezoid experiment runs 2021-02-16 00:35:36 -06:00
src remove windingrule param from stroke proc 2021-02-18 12:16:01 -06:00
tests small change 2021-02-17 01:18:30 -06:00
tools Add line example. 2021-02-18 10:14:55 -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 0.0.21 2021-02-18 13:24:08 -06:00
README.md Add line example. 2021-02-18 10:14:55 -08: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.

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!

nimble install pixie

Features:

  • Drawing paths, shapes and curves, with even-odd and non-zero windings.
  • Strokes with joins and caps.
  • Shadows, glows and blurs.
  • Complex masking: Subtract, Intersect, Exclude.
  • Complex blends: Darken, Multiply, Color Dodge, Hue, Luminosity... etc.
  • Pixel perfect AA quality.
  • Supported file formats: PNG, BMP, JPG, SVG + more in development.

Testing

nimble test

Examples

Square

examples/square.nim

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

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

example output

Line

examples/line.nim

var p: Path
p.moveTo(25, 25)
p.lineTo(175, 175)

image.strokePath(
  p,
  parseHtmlColor("#FF5C00").rgba,
  strokeWidth = 10,
)

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(0, 255, 0, 255))

example output

Heart

examples/heart.nim

image.fillPath(
  """
    M 20 60
    A 40 40 90 0 1 100 60
    A 40 40 90 0 1 180 60
    Q 180 120 100 180
    Q 20 120 20 60
    z
  """,
  parseHtmlColor("#FC427B").rgba
)

example output

Shadow

examples/shadow.nim

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

var polyImage = newImage(200, 200)
polyImage.fillPath(p, rgba(255, 255, 255, 255))

image.draw(polyImage.shadow(
  offset = vec2(2, 2),
  spread = 2,
  blur = 10,
  color = rgba(0, 0, 0, 200)
))
image.draw(polyImage)

example output

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

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