package main

import (
	"fmt"

	"github.com/go-vgo/robotgo"
)

func main() {
	//
	// syscall.NewLazyDLL("user32.dll").NewProc("SetProcessDPIAware").Call()

	width, height := robotgo.GetScaleSize()
	fmt.Println("get scale screen size: ", width, height)

	bitmap := robotgo.CaptureScreen(0, 0, width, height)
	robotgo.SaveBitmap(bitmap, "test.png")

	sx := robotgo.ScaleX()
	s := robotgo.Scale()
	robotx, roboty := 35*s/100, 25*s/100
	fmt.Println("scale: ", sx, s, " pos: ", robotx, roboty)

	mx, my := robotgo.GetMousePos()
	sx, sy := mx*s/100, my*s/100

	rx, ry, rw, rh := sx, sy, robotx, roboty
	// bit1 := robotgo.CaptureScreen(10, 20, robotw, roboth)
	bit1 := robotgo.CaptureScreen(rx, ry, rw, rh)
	robotgo.SaveBitmap(bit1, "test2.png")

	clo := robotgo.GetPixelColor(robotx, roboty)
	fmt.Println("GetPixelColor...", clo)
}