I want to work on a stb_image wrapper. I'm trying to figure out the best (and most efficient) way of storing pixel data in Nim's data structures.
stb_image stores the pixel data in an unsigned char * type. I had a chat with the person who wrote the nimPNG package and he says that using Nim's string would be a good container. But when I was working with stb_image in Nim (for another project) I was using a seq[uint8] type (thread link here, final mini-wrapper here. Which one would be better to work with?