update readme
This commit is contained in:
parent
a9b29e156f
commit
b5d7c68421
1 changed files with 12 additions and 13 deletions
25
README.md
25
README.md
|
@ -2,23 +2,23 @@
|
||||||
|
|
||||||
# Pixie - A full-featured 2D graphics library for Nim
|
# 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](https://www.cairographics.org/) and [Skia](https://skia.org) written (almost) entirely in Nim.
|
Pixie is a 2D graphics library similar to [Cairo](https://www.cairographics.org/) and [Skia](https://skia.org) 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!
|
This library is being actively developed and we'd be happy for you to use it.
|
||||||
|
|
||||||
`nimble install pixie`
|
`nimble install pixie`
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
* Drawing paths, shapes and curves, with even-odd and non-zero windings.
|
* Drawing paths, shapes and curves with even-odd and non-zero windings.
|
||||||
* Pixel perfect AA quality.
|
* Pixel-perfect AA quality.
|
||||||
* Supported file formats: PNG, BMP, JPG, SVG + more in development.
|
* Supported file formats are PNG, BMP, JPG, SVG + more in development.
|
||||||
* Strokes with joins and caps.
|
* Strokes with joins and caps.
|
||||||
* Shadows, glows and blurs.
|
* Shadows, glows and blurs.
|
||||||
* Complex masking: Subtract, Intersect, Exclude.
|
* Complex masking: Subtract, Intersect, Exclude.
|
||||||
* Complex blends: Darken, Multiply, Color Dodge, Hue, Luminosity... etc.
|
* Complex blends: Darken, Multiply, Color Dodge, Hue, Luminosity... etc.
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
API reference: https://treeform.github.io/pixie/pixie.html
|
API reference: https://treeform.github.io/pixie/pixie.html
|
||||||
|
|
||||||
### File formats
|
### File formats
|
||||||
|
@ -27,23 +27,22 @@ Format | Read | Write |
|
||||||
------------- | ------------- | ------------- |
|
------------- | ------------- | ------------- |
|
||||||
PNG | ✅ | ✅ |
|
PNG | ✅ | ✅ |
|
||||||
JPEG | ✅ | |
|
JPEG | ✅ | |
|
||||||
BMP | ✅ | |
|
BMP | ✅ | ✅ |
|
||||||
SVG | ✅ | |
|
SVG | ✅ | |
|
||||||
|
|
||||||
|
### Joins and caps
|
||||||
|
|
||||||
### Joins and caps:
|
Supported Caps:
|
||||||
|
|
||||||
Supported Saps:
|
|
||||||
* Butt
|
* Butt
|
||||||
* Round
|
* Round
|
||||||
* Square
|
* Square
|
||||||
|
|
||||||
Supported Joints:
|
Supported Joins:
|
||||||
* Miter (with miter limit angle)
|
* Miter (with miter angle limit)
|
||||||
* Bevel
|
* Bevel
|
||||||
* Round
|
* Round
|
||||||
|
|
||||||
### Blending & Masking.
|
### Blending & masking
|
||||||
|
|
||||||
Supported Blend Modes:
|
Supported Blend Modes:
|
||||||
* Normal
|
* Normal
|
||||||
|
|
Loading…
Reference in a new issue