我在.Net 2.0中使用C#,我想读取PNG图像文件并检查第一行和第一列是否具有非透明像素.
我应该使用什么组件和/或类?
System.Drawing.dll程序集中的Bitmap类:
Bitmap bitmap = new Bitmap(@"C:\image.png"); Color clr = bitmap.GetPixel(0, 0);