/WinCapturer

A library for capturing window for macOS

Primary LanguageSwiftMIT LicenseMIT

WinCapturer

A library for capturing window for macOS

// 获取用户主目录路径
let homeDirectory = NSHomeDirectory()

// 构建 Downloads 目录路径
let downloadsPath = "\(homeDirectory)/Downloads/translator.png"

// 调用方法保存截图到指定路径
window.saveScreenshotTo(file: downloadsPath) { error in
}