AnalysisImageClick.ScreenCapture.saveBitmap C# (CSharp) Method

saveBitmap() public static method

public static saveBitmap ( string file, System bitmap ) : bool
file string
bitmap System
return bool
        public static bool saveBitmap(string file, System.Drawing.Bitmap bitmap)
        {
            try
            {
                bitmap.Save(file, System.Drawing.Imaging.ImageFormat.Png);
                return true;
            }
            catch (Exception e) { }
            return false;
        }