Golang : Detect number of active displays and the display's resolution
There are times when we need to find out the number of active displays and their resolution. The following code is a simple program that utilized the kbinani/screenshot
package to get the active screens' information.
The information will allow our program to properly capture screenshot or adjust our program output - such as maximizing(fullscreen) to the entire display.
Here you go!
package main
import (
"fmt"
"github.com/kbinani/screenshot"
)
func main() {
n := screenshot.NumActiveDisplays()
fmt.Println("Number of active monitor(s) : ", n)
for i := 0; i < n; i++ {
bounds := screenshot.GetDisplayBounds(i)
x := bounds.Dx()
y := bounds.Dy()
fmt.Printf("Display #%d resolution is %d x %d\n", i, x, y)
}
}
Sample output:
Number of active monitor(s) : 2
Display #0 resolution is 1920 x 1080
Display #1 resolution is 1920 x 1080
Reference :
See also : Golang : Qt get screen resolution and display on center example
By Adam Ng(黃武俊)
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.3k Golang : ROT47 (Caesar cipher by 47 characters) example
+18.7k Golang : GORM create record or insert new record into database example
+16.2k Golang : Check whether a network interface is up on your machine
+13.6k Golang : How to reverse elements order in map ?
+5k CodeIgniter : form input set_value cause " to become & quot
+11.1k Golang : Transform comma separated string to slice example
+9k Golang : Simple File Server
+18k Golang : Append content to a file
+3.7k Linux/Unix/MacOSX : Find out which application is listening to port 80 or use which IP version
+8.2k Golang : Function wrapper that takes arguments and return result example
+46.2k Golang : Upload file from web browser to server
+8.3k Golang : Translate language with language package example