pixie/src/pixie.nim

49 lines
1.4 KiB
Nim
Raw Normal View History

2020-11-20 02:45:43 +00:00
## Public interface to you library.
2020-11-21 04:34:57 +00:00
import pixie/images, pixie/masks, pixie/paths, pixie/common,
pixie/fileformats/bmp, pixie/fileformats/png, flatty/binny
2020-11-21 02:21:27 +00:00
export images, masks, paths, PixieError
2020-11-20 03:44:24 +00:00
2020-11-21 04:34:57 +00:00
type
FileFormat* = enum
ffPng, ffBmp
2020-11-20 03:44:24 +00:00
proc toMask*(image: Image): Mask =
## Converts an Image to a Mask.
result = newMask(image.width, image.height)
for i in 0 ..< image.data.len:
result.data[i] = image.data[i].a
proc toImage*(mask: Mask): Image =
## Converts a Mask to Image.
result = newImage(mask.width, mask.height)
for i in 0 ..< mask.data.len:
result.data[i].a = mask.data[i]
2020-11-21 04:34:57 +00:00
proc decodeImage(data: string | seq[uint8]): Image =
## Loads an image from a memory.
if data.len > 8 and cast[array[8, uint8]](data.readUint64(0)) == pngSignature:
return decodePng(data)
if data.len > 2 and data.readStr(0, 2) == "BM":
return decodeBmp(data)
raise newException(PixieError, "Unsupported image file format")
proc readImage*(filePath: string): Image =
## Loads an image from a file.
decodeImage(readFile(filePath))
proc encodeImage(image: Image, fileFormat: FileFormat): string =
## Encodes an image into a memory.
case fileFormat:
of ffPng:
image.encodePng()
of ffBmp:
image.encodeBmp()
proc writeFile*(image: Image, filePath: string, fileFormat: FileFormat) =
## Writes an image to a file.
writeFile(filePath, image.encodeImage(fileFormat))