1

我被困在保存一个System.Drawing.Bitmap类型的数组,每个位图到单独的文件。我有一个数组“调查”。这个数组存储了几个双精度类型的列表。对于每个列表,我想创建一个位图,然后将其保存为 bmp 文件。该 raport[i].Save(Path.Combine(myfilepath, nets[i] + ".bmp"));返回TypeInitializationException - 我不知道为什么。该片段nets[i]是具有预期文件名的字典(int,string)。

public void save_results()
    {
        System.Drawing.Bitmap[] raport = new System.Drawing.Bitmap[survey.Length];

        for (int i = 0; i < survey.Length; i++)
        {
            raport[i] = new System.Drawing.Bitmap(survey[i].Count, 1000);

            for (int x = 0; x < survey[i].Count; x++)
                for (int y = 0; y < 1000; y++)
                    raport[i].SetPixel(x, y, Color.FromArgb(255, 255, 255));

            for (int x = 0; x < survey[i].Count; x++)
                raport[i].SetPixel(x, (int)(1000 - Math.Floor(survey[i][x] * 1000) >= 1000 ? 999 : 1000 - Math.Floor(survey[i][x] * 1000)), Color.FromArgb(0, 0, 0));

    raport[i].Save(Path.Combine(myfilepath, nets[i] + ".bmp"));
        }
    }
4

1 回答 1

0

最后,问题与变量“myfilepath”有关。该变量是从几个文件路径“编译”的 - 所有这些字符串应该是static

    public static string mydoc= Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments);
    public static string myfilepath_p = Path.Combine(mydoc, "Demeter");
    public static string myfilepath= Path.Combine(myfilepath_p, "regresja_liniowa");

最初,只有引用代码中使用的“最终”变量是static,导致错误。

其余代码工作正常。

于 2017-06-19T10:50:08.607 回答