C # Bitmap GetPixel inefficient, too slow alternative method

Source: Internet
Author: User

New class

     Public classdirectbitmap:idisposable { PublicBitmap Bitmap {Get;Private Set; } int[] Bits =NULL;  Public intHeight {Get;Private Set; }  Public intWidth {Get;Private Set; } protectedGCHandle Bitshandle {Get;Private Set; }  PublicDirectbitmap (intWidthintheight) {Width=width; Height=height; Bits=New int[Width *height]; Bitshandle=GCHandle.Alloc (Bits, gchandletype.pinned); Bitmap=NewBitmap (width, height, Width *4, Pixelformat.format32bpppargb, Bitshandle.addrofpinnedobject ()); }         Public voidSetPixel (intXinty, Color colour) {Setpixelrgb (x, y, colour).        ToArgb ()); }         Public voidSetpixelrgb (intXintYintcolour) {bits[x+ (Y * Width)] =colour; }         PublicColor GetPixel (intXinty) {returnColor.FromArgb (Getpixelrgb (x, y)); }         Public intGetpixelrgb (intXinty) {returnBits[x + (Y *Width)]; }        Private BOOLdisposed =false;  Public voidDispose () {if(disposed)return; Disposed=true;            Bitmap.dispose ();        Bitshandle.free (); }    }

When used:

Declare the Directbitmap instance and access the bitmap of the Directbitmap. Use Directbitmap's GetPixel method to get the color

            New Directbitmap (RC. RIGHT-RC. Left, RC. Bottom- RC. TOP);             using (Graphics GP = graphics.fromimage (image). Bitmap))            {                = GP. GetHdc ();                 0 );                Gp. ReleaseHdc ();            }

C # Bitmap GetPixel inefficient, too slow alternative method

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.