private void ExportImageFile(string path, SystemBitmap image) { using (new PerformanceSection("ExportImageFile")) { image.Save(path); } }
public static void WriteFileImage(string path, SystemBitmap image) { image.Save(path); }