Hi,

I was playing around the other day trying and I was programing a little
app that reads a image pixel by pixel and stores the color information
to a string, from which I can later generate the picture back...

The problem is that this is quite slow for larger images. So I was
wondering if there is any other library or something that would be
faster at this kind of operations.

Re: Altrnative to Bitmap.GetPixel by Lloyd

Lloyd
Sun Mar 26 09:01:27 CST 2006

Bitmap.LockBits

<jan.hancic@gmail.com> wrote in message
news:1143375531.534982.101600@z34g2000cwc.googlegroups.com...
> Hi,
>
> I was playing around the other day trying and I was programing a little
> app that reads a image pixel by pixel and stores the color information
> to a string, from which I can later generate the picture back...
>
> The problem is that this is quite slow for larger images. So I was
> wondering if there is any other library or something that would be
> faster at this kind of operations.
>



Re: Altrnative to Bitmap.GetPixel by Kevin

Kevin
Sun Mar 26 10:03:28 CST 2006

For a more elaborate explanation, see: http://www.bobpowell.net/faqmain.htm

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.

"Lloyd Dupont" <net.galador@ld> wrote in message
news:%23YaEjYOUGHA.4792@TK2MSFTNGP14.phx.gbl...
> Bitmap.LockBits
>
> <jan.hancic@gmail.com> wrote in message
> news:1143375531.534982.101600@z34g2000cwc.googlegroups.com...
>> Hi,
>>
>> I was playing around the other day trying and I was programing a little
>> app that reads a image pixel by pixel and stores the color information
>> to a string, from which I can later generate the picture back...
>>
>> The problem is that this is quite slow for larger images. So I was
>> wondering if there is any other library or something that would be
>> faster at this kind of operations.
>>
>
>



Re: Altrnative to Bitmap.GetPixel by jan

jan
Sun Mar 26 10:06:16 CST 2006

Thanks to both of you!