Search found 17 matches

by superstator
2017-12-08T12:49:19-07:00
Forum: Magick.NET
Topic: Accessing raw image data
Replies: 13
Views: 23472

Re: Accessing raw image data

I mean an array with one byte per channel per pixel for 8-bit color. I don't believe we have any need for 16-bit color support, so I don't think the Q16 builds will matter for us. As per usual, as soon as I posted the question I started getting some traction. After poking around some more, I think I...
by superstator
2017-12-08T10:55:17-07:00
Forum: Magick.NET
Topic: Accessing raw image data
Replies: 13
Views: 23472

Accessing raw image data

I am porting an old imaging tool to .NET Core, and need to load image data for editing, and then save it back out. In the past we used the old GDI Bitmap class to lock the image bytes to an IntPtr - is there something similar in Magick.NET? I am able to load an image file using MagickImage() easily ...