You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Essentially it would be nice if nimPNG could parse a 16-bit greyscale into a seq[uint16] for example, and similarly write this data. This shouldn't be too hard to implement, although might add a bit of complexity when handling byte ordering, but it would make it much easier to use nimPNG.
The text was updated successfully, but these errors were encountered:
This should be easy to implement. Only need to add seq[uint16] to openArray[byte] conversion for the input part. And a reverse process at the output end.
Essentially it would be nice if nimPNG could parse a 16-bit greyscale into a
seq[uint16]
for example, and similarly write this data. This shouldn't be too hard to implement, although might add a bit of complexity when handling byte ordering, but it would make it much easier to use nimPNG.The text was updated successfully, but these errors were encountered: