Faster way of reading pixels from Bitmap object

  • Thread starter Thread starter bongoo
  • Start date Start date
B

bongoo

I'm reading pixel values (RGB) from a bitmap object using function from
system.drawing namespace & vb.net (.net framework 1.1)

But I would like to make it faster, so is there any another way of reading
pixel values from bitmap objects? (some API or smthng)
 
I'm reading pixel values (RGB) from a bitmap object using function from
system.drawing namespace & vb.net (.net framework 1.1)

But I would like to make it faster, so is there any another way of reading
pixel values from bitmap objects? (some API or smthng)

Eric Gunnerson wrote an article called 'Unsafe Image Processing' that
covers use of Lockbits() for dealing with pixels in a bitmap. check:
http://tinyurl.com/9vcbu

Eric refers to C# but the concepts are the same.

If you wanted to dive deeper, you could check Pinvoke.net for info on
accessing DibSections.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top