예제 #1
0
 private void ExportImageFile(string path, SystemBitmap image)
 {
     using (new PerformanceSection("ExportImageFile"))
     {
         image.Save(path);
     }
 }
예제 #2
0
파일: FileUtil.cs 프로젝트: geofrey/crayon
 public static void WriteFileImage(string path, SystemBitmap image)
 {
     image.Save(path);
 }