Example #1
0
    public void writeGfx(string path)
    {
        if (!Directory.Exists(path + "Graphics"))
        {
            Directory.CreateDirectory(path + "Graphics");
        }

        for (int i = 0; i < 223; i++)
        {
            GFX.singleGrayscaletobmp(i).Save(path + "Graphics//" + i.ToString("D3") + ".png");
        }
    }