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
+6.9k Golang : Get Alexa ranking data example
+11.3k Golang : Fuzzy string search or approximate string matching example
+18k Golang : Get path name to current directory or folder
+14.8k Golang : Save(pipe) HTTP response into a file
+14.3k Golang : Convert(cast) int to float example
+26k Golang : Get executable name behind process ID example
+9.7k Golang : Convert octal value to string to deal with leading zero problem
+14k Golang : Recombine chunked files example
+6.6k Golang : Get expvar(export variables) to work with multiplexer
+13.5k Golang : Get dimension(width and height) of image file
+7.5k Golang : Generate human readable password