-
Hello, i'm trying to load an var image = new Image<Argb32>(width, height,pixelData); Probably this is really easy, but i can't find a method on how to do this. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
You are looking for the |
Beta Was this translation helpful? Give feedback.
-
Sorry to write here again, but i just realized my pixeldata is in ABGR32 format, which doesn't seem to exist natively in ImageSharp. Do i need to manually convert the data? |
Beta Was this translation helpful? Give feedback.
You are looking for the
Image.LoadPixelData<Bgra32>(data, width, hieght)
static method.