rm seq[uint8]

This commit is contained in:
Ryan Oldenburg 2022-02-12 18:59:13 -06:00
parent b456c54825
commit ccccd883bb
3 changed files with 3 additions and 7 deletions

View file

@ -18,7 +18,7 @@ converter autoPremultipliedAlpha*(c: ColorRGBA): ColorRGBX {.inline, raises: [].
## Convert a straight alpha RGBA to a premultiplied alpha RGBA.
c.rgbx()
proc decodeImage*(data: string | seq[uint8]): Image {.raises: [PixieError].} =
proc decodeImage*(data: string): Image {.raises: [PixieError].} =
## Loads an image from memory.
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
decodePng(data)
@ -38,7 +38,7 @@ proc decodeImage*(data: string | seq[uint8]): Image {.raises: [PixieError].} =
else:
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.
if data.len > 8 and data.readUint64(0) == cast[uint64](pngSignature):
newMask(decodePng(data))

View file

@ -196,10 +196,6 @@ proc decodeBmp*(data: string): Image {.raises: [PixieError].} =
if 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: [].} =
## Encodes an image into the BMP file format.

View file

@ -3,4 +3,4 @@ import benchy, pixie/fileformats/jpg
let data = readFile("tests/fileformats/jpg/jpeg420exif.jpg")
timeIt "pixie decode":
discard decodeJpg(cast[seq[uint8]](data))
discard decodeJpg(data)