如何將picturebox中的結果thresolded圖像轉換爲8bbp像素格式? 我試過這段代碼,但它不工作?如何將picturebox中的結果thresolded圖像轉換爲8bbp像素格式
Bitmap orig = new Bitmap(thresholded);
Bitmap clone = new Bitmap(width , height , System.Drawing.Imaging.PixelFormat.Format8bppIndexed);
using (Graphics gr = Graphics.FromImage(clone))
{
gr.DrawImage(orig, new Rectangle(0, 0, width, height));
}
錯誤是「圖形對象無法從具有索引像素格式的圖像創建」。
我需要你的幫助。
錯誤是「例外是未處理」 –
你需要更聰明的代碼,知道如何建立一個只有256種顏色的調色板仍然可以得到體面的結果。毫無意義的今天順便說一句,這停止了20年前的事情。有傳言說FreeImage有可靠的轉換器。 –