Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 589 Bytes

README.md

File metadata and controls

39 lines (29 loc) · 589 Bytes

Screenshot

Simple cross-platform pure Go screen shot library. (tested on linux&windows&osx)


Installation

go get github.com/vova616/screenshot

Basic Usage

Import the package

import (
    "github.com/vova616/screenshot"
)
func main() {
    img, err := screenshot.CaptureScreen()
    myImg := image.Image(img)
}

Dependencies


Examples

Look at example/ folder.