如何将char转换为system.drawing.image(图片框)

时间:2018-07-01 07:20:19

标签: c# image-processing

我需要将输出输出到图片框和文本文件。但出现错误,因为无法将类型'char'隐式转换为system.drawing.image。

                    var color = bmp.GetPixel(x, y);
                    var brightness = Brightness(color);
                    var idx = brightness / 255 * (pixels.Length - 1);
                    var pxl = pixels[pixels.Length - (int)Math.Round(idx) - 1];

                    pictureBox2.Image = pxl;  //error

0 个答案:

没有答案