string, rm encodeJpeg

This commit is contained in:
Ryan Oldenburg 2022-05-12 17:57:10 -05:00
parent 1a611f06c7
commit 4b97780a54
3 changed files with 6 additions and 16 deletions

View file

@ -65,7 +65,7 @@ proc encodeImage*(image: Image, fileFormat: FileFormat): string {.raises: [Pixie
of PngFormat: of PngFormat:
image.encodePng() image.encodePng()
of JpgFormat: of JpgFormat:
image.encodeJpg() raise newException(PixieError, "Unsupported file format")
of BmpFormat: of BmpFormat:
image.encodeBmp() image.encodeBmp()
of QoiFormat: of QoiFormat:

View file

@ -63,7 +63,7 @@ type
channel: Mask channel: Mask
DecoderState = object DecoderState = object
buffer: seq[uint8] buffer: string
pos, bitCount: int pos, bitCount: int
bits: uint32 bits: uint32
hitEnd: bool hitEnd: bool
@ -97,7 +97,7 @@ proc readUint8(state: var DecoderState): uint8 =
## Reads a byte from the input stream. ## Reads a byte from the input stream.
if state.pos >= state.buffer.len: if state.pos >= state.buffer.len:
failInvalid() failInvalid()
result = state.buffer[state.pos] result = cast[uint8](state.buffer[state.pos])
inc state.pos inc state.pos
proc readUint16be(state: var DecoderState): uint16 = proc readUint16be(state: var DecoderState): uint16 =
@ -773,8 +773,8 @@ template checkReset(state: var DecoderState) =
if state.bitCount < 24: if state.bitCount < 24:
state.fillBits() state.fillBits()
if state.buffer[state.pos] == 0xFF: if state.buffer[state.pos] == 0xFF.char:
if state.buffer[state.pos+1] in {0xD0 .. 0xD7}: if state.buffer[state.pos+1] in {0xD0.char .. 0xD7.char}:
state.pos += 2 state.pos += 2
else: else:
failInvalid("did not get expected reset marker") failInvalid("did not get expected reset marker")
@ -929,7 +929,7 @@ proc buildImage(state: var DecoderState): Image =
else: else:
failInvalid() failInvalid()
proc decodeJpeg*(data: seq[uint8]): Image {.raises: [PixieError].} = proc decodeJpeg*(data: string): Image {.inline, raises: [PixieError].} =
## Decodes the JPEG into an Image. ## Decodes the JPEG into an Image.
var state = DecoderState() var state = DecoderState()
@ -994,11 +994,5 @@ proc decodeJpeg*(data: seq[uint8]): Image {.raises: [PixieError].} =
state.buildImage() state.buildImage()
proc decodeJpeg*(data: string): Image {.inline, raises: [PixieError].} =
decodeJpeg(cast[seq[uint8]](data))
proc encodeJpeg*(image: Image): string =
raise newException(PixieError, "Encoding JPG not supported yet")
when defined(release): when defined(release):
{.pop.} {.pop.}

View file

@ -20,7 +20,3 @@ proc decodeJpg*(data: string): Image {.inline, raises: [PixieError].} =
result = newImage(width, height) result = newImage(width, height)
copyMem(result.data[0].addr, pixels[0].unsafeAddr, pixels.len) copyMem(result.data[0].addr, pixels[0].unsafeAddr, pixels.len)
proc encodeJpg*(image: Image): string {.raises: [PixieError].} =
## Encodes Image into a JPEG data string.
raise newException(PixieError, "Encoding JPG not supported yet")