More readme and examples.
91
README.md
|
@ -23,6 +23,70 @@ Features:
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
### Square
|
||||||
|
[examples/square.nim](examples/square.nim)
|
||||||
|
```nim
|
||||||
|
var p: Path
|
||||||
|
p.rect(50, 50, 100, 100)
|
||||||
|
|
||||||
|
image.fillPath(p, rgba(255, 0, 0, 255))
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
|
### Rounded rectangle
|
||||||
|
[examples/rounded_rectangle.nim](examples/rounded_rectangle.nim)
|
||||||
|
```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))
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
|
### Heart
|
||||||
|
[examples/heart.nim](examples/heart.nim)
|
||||||
|
```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
|
||||||
|
)
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
|
### Shadow
|
||||||
|
[examples/shadow.nim](examples/shadow.nim)
|
||||||
|
```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)
|
||||||
|
```
|
||||||
|

|
||||||
|
|
||||||
### Blur
|
### Blur
|
||||||
[examples/blur.nim](examples/blur.nim)
|
[examples/blur.nim](examples/blur.nim)
|
||||||
```nim
|
```nim
|
||||||
|
@ -41,33 +105,6 @@ image.draw(blur)
|
||||||
```
|
```
|
||||||

|

|
||||||
|
|
||||||
### Rounded rectangle
|
|
||||||
[examples/rounded_rectangle.nim](examples/rounded_rectangle.nim)
|
|
||||||
```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))
|
|
||||||
```
|
|
||||||

|
|
||||||
|
|
||||||
### Square
|
|
||||||
[examples/square.nim](examples/square.nim)
|
|
||||||
```nim
|
|
||||||
var p: Path
|
|
||||||
p.rect(50, 50, 100, 100)
|
|
||||||
|
|
||||||
image.fillPath(p, rgba(255, 0, 0, 255))
|
|
||||||
```
|
|
||||||

|
|
||||||
|
|
||||||
### Tiger
|
### Tiger
|
||||||
[examples/tiger.nim](examples/tiger.nim)
|
[examples/tiger.nim](examples/tiger.nim)
|
||||||
```nim
|
```nim
|
||||||
|
|
Before Width: | Height: | Size: 88 KiB After Width: | Height: | Size: 88 KiB |
20
examples/heart.nim
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
import pixie, chroma, vmath
|
||||||
|
|
||||||
|
let
|
||||||
|
image = newImage(200, 200)
|
||||||
|
|
||||||
|
image.fill(rgba(255, 255, 255, 255))
|
||||||
|
|
||||||
|
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
|
||||||
|
)
|
||||||
|
|
||||||
|
image.writeFile("examples/heart.png")
|
BIN
examples/heart.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
|
@ -13,6 +13,6 @@ let
|
||||||
var path: Path
|
var path: Path
|
||||||
path.roundedRect(vec2(x, y), vec2(w, h), r, r, r, r)
|
path.roundedRect(vec2(x, y), vec2(w, h), r, r, r, r)
|
||||||
|
|
||||||
image.fillPath(path, rgba(255, 0, 0, 255))
|
image.fillPath(path, rgba(0, 255, 0, 255))
|
||||||
|
|
||||||
image.writeFile("examples/rounded_rectangle.png")
|
image.writeFile("examples/rounded_rectangle.png")
|
||||||
|
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2.2 KiB |
24
examples/shadow.nim
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
import pixie, chroma, vmath
|
||||||
|
|
||||||
|
let
|
||||||
|
trees = readImage("examples/data/trees.png")
|
||||||
|
image = newImage(200, 200)
|
||||||
|
|
||||||
|
image.fill(rgba(255, 255, 255, 255))
|
||||||
|
|
||||||
|
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)
|
||||||
|
|
||||||
|
image.writeFile("examples/shadow.png")
|
BIN
examples/shadow.png
Normal file
After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 42 KiB |
|
@ -1,4 +1,4 @@
|
||||||
import os, strutils, osproc
|
import os, strutils, osproc, sequtils, algorithm
|
||||||
|
|
||||||
proc cutBetween(str, a, b: string): string =
|
proc cutBetween(str, a, b: string): string =
|
||||||
let
|
let
|
||||||
|
@ -10,20 +10,28 @@ proc cutBetween(str, a, b: string): string =
|
||||||
|
|
||||||
var md: seq[string]
|
var md: seq[string]
|
||||||
|
|
||||||
for k, path in walkDir("examples"):
|
var exampleFiles = [
|
||||||
if path.endsWith(".nim"):
|
"examples/square.nim",
|
||||||
discard execCmd("nim c -r -d:danger " & path)
|
"examples/rounded_rectangle.nim",
|
||||||
let code = readFile(path)
|
"examples/heart.nim",
|
||||||
let innerCode = code.cutBetween("image.fill(rgba(255, 255, 255, 255))", "image.writeFile")
|
"examples/shadow.nim",
|
||||||
if innerCode != "":
|
"examples/blur.nim",
|
||||||
let path = path.replace("\\", "/")
|
"examples/tiger.nim"
|
||||||
md.add "### " & path.splitFile().name.replace("_", " ").capitalizeAscii()
|
]
|
||||||
md.add "[" & path & "](" & path & ")"
|
|
||||||
md.add "```nim"
|
for path in exampleFiles:
|
||||||
md.add innerCode.strip()
|
discard execCmd("nim c -r -d:danger " & path)
|
||||||
md.add "```"
|
let code = readFile(path)
|
||||||
md.add ".replace("\\", "/") & ")"
|
let innerCode = code.cutBetween("image.fill(rgba(255, 255, 255, 255))", "image.writeFile")
|
||||||
md.add ""
|
if innerCode != "":
|
||||||
|
let path = path.replace("\\", "/")
|
||||||
|
md.add "### " & path.splitFile().name.replace("_", " ").capitalizeAscii()
|
||||||
|
md.add "[" & path & "](" & path & ")"
|
||||||
|
md.add "```nim"
|
||||||
|
md.add innerCode.strip()
|
||||||
|
md.add "```"
|
||||||
|
md.add ".replace("\\", "/") & ")"
|
||||||
|
md.add ""
|
||||||
|
|
||||||
var readme = readFile("README.md")
|
var readme = readFile("README.md")
|
||||||
|
|
||||||
|
|