rm seq[uint8]
This commit is contained in:
parent
b456c54825
commit
ccccd883bb
3 changed files with 3 additions and 7 deletions
|
@ -18,7 +18,7 @@ converter autoPremultipliedAlpha*(c: ColorRGBA): ColorRGBX {.inline, raises: [].
|
||||||
## Convert a straight alpha RGBA to a premultiplied alpha RGBA.
|
## Convert a straight alpha RGBA to a premultiplied alpha RGBA.
|
||||||
c.rgbx()
|
c.rgbx()
|
||||||
|
|
||||||
proc decodeImage*(data: string | seq[uint8]): Image {.raises: [PixieError].} =
|
proc decodeImage*(data: string): Image {.raises: [PixieError].} =
|
||||||
## Loads an image from memory.
|
## Loads an image from memory.
|
||||||
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
|
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
|
||||||
decodePng(data)
|
decodePng(data)
|
||||||
|
@ -38,7 +38,7 @@ proc decodeImage*(data: string | seq[uint8]): Image {.raises: [PixieError].} =
|
||||||
else:
|
else:
|
||||||
raise newException(PixieError, "Unsupported image file format")
|
raise newException(PixieError, "Unsupported image file format")
|
||||||
|
|
||||||
proc decodeMask*(data: string | seq[uint8]): Mask {.raises: [PixieError].} =
|
proc decodeMask*(data: string): Mask {.raises: [PixieError].} =
|
||||||
## Loads a mask from memory.
|
## Loads a mask from memory.
|
||||||
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
|
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
|
||||||
newMask(decodePng(data))
|
newMask(decodePng(data))
|
||||||
|
|
|
@ -196,10 +196,6 @@ proc decodeBmp*(data: string): Image {.raises: [PixieError].} =
|
||||||
if flipVertical:
|
if flipVertical:
|
||||||
result.flipVertical()
|
result.flipVertical()
|
||||||
|
|
||||||
proc decodeBmp*(data: seq[uint8]): Image {.inline, raises: [PixieError].} =
|
|
||||||
## Decodes bitmap data into an Image.
|
|
||||||
decodeBmp(cast[string](data))
|
|
||||||
|
|
||||||
proc encodeBmp*(image: Image): string {.raises: [].} =
|
proc encodeBmp*(image: Image): string {.raises: [].} =
|
||||||
## Encodes an image into the BMP file format.
|
## Encodes an image into the BMP file format.
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,4 @@ import benchy, pixie/fileformats/jpg
|
||||||
let data = readFile("tests/fileformats/jpg/jpeg420exif.jpg")
|
let data = readFile("tests/fileformats/jpg/jpeg420exif.jpg")
|
||||||
|
|
||||||
timeIt "pixie decode":
|
timeIt "pixie decode":
|
||||||
discard decodeJpg(cast[seq[uint8]](data))
|
discard decodeJpg(data)
|
||||||
|
|
Loading…
Reference in a new issue