Beispiel #1
0
 private void SaveTabeltopFormat(Bitmap card, string filename, CardType type, int print)
 {
     for (var i = 0; i < print; i++)
     {
         var name = type.GetDescription() + "_" + ChangePrintNumbers(i + 1) + "_" + filename;
         card.Save(_userData.ExportPath + "\\" + name + ".png", ImageFormat.Png);
     }
 }
Beispiel #2
0
 public String ToSimpleString() => rank.GetDescription() + "" + type.GetDescription();
Beispiel #3
0
        private void SaveNormalFormat(Bitmap card, string filename, CardType type, int print)
        {
            var name = type.GetDescription() + "_" + ChangePrintNumbers(print) + "_" + filename;

            card.Save(_userData.ExportPath + "\\" + name + ".png", ImageFormat.Png);
        }