Click here to Skip to main content
15,891,248 members
Articles / Multimedia / Image Processing

Work with bitmaps faster in C#

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
20 Nov 2011CPOL 14.2K   4  
I got what A.J tried to say. It's about implementing IDisposable in LockBitmap.Basically, it involves changing:public class LockBitmapto: public class LockBitmap : IDisposableThe constructor:public LockBitmap(Bitmap source){ this.source = source;}to:public...

Views

Daily Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Brazil Brazil
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions