我試圖將圖像的像素值存儲到二維數組中使用getpixel方法for循環時[0,240] 我得到了outofrange異常任何人都可以幫助我?getpixel方法中的異常異常
// Loop through the images pixels to store in array.
for (x = 0; x < image1.Height; x++)
{
for (y = 0; y < image1.Width; y++)
{
Color p = ((Bitmap)image1).GetPixel(x, y);
pic[x,y] = p.ToString();
}
}
什麼是'pic'的大小? – Reti43