How can I determine if a particular pixel in a GIF image is transparent in C#? I can see the MakeTransparent method in Bitmap, but nothing to determine if it is actually transparent already.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
GetPixeland then look at the Alpha component of theColorinstance returned. 0 = fully transparent.If you need to loop through all (or many) pixels, be aware that GetPixel is quite slow. A faster, but more involved way, is to use LockBits to lock the data in memory, then look at the bitmap data directly.