using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RichCreator.Utility.Captures { /// /// 抓屏 /// public interface ICapture { /// /// 截屏 /// /// Bitmap CaptureScreen(); /// /// 截取指定区域 /// /// /// /// /// /// Bitmap CaptureScreen(Int32 x, Int32 y, Int32 width, Int32 height); } }