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
I work with large images for geosciences with Nim and I was looking for an efficient rasterizer while keeping everything in memory
To archieve this, working with sizeof(pixel) <= 8 bits is a must
Hi, Pixie does not have multiple different image formats so will not meet this requirement.
It is complex to support many image data formats with optimized drawing code paths etc so this is not something I see myself working on since I do not need it.
Hello!
I work with large images for geosciences with Nim and I was looking for an efficient rasterizer while keeping everything in memory
To archieve this, working with sizeof(pixel) <= 8 bits is a must
Cairo has FORMAT_A1 and FORMAT_A8 for this
https://www.cairographics.org/documentation/pycairo/3/reference/constants.html#cairo-format
FORMAT_A8 is the easiest way to work on the gpu like
I strongly prefer a 100% Nim solution, is Pixie capable of working with single channel images?
The text was updated successfully, but these errors were encountered: