Crates.io | screen-info |
lib.rs | screen-info |
version | 0.0.1 |
source | src |
created_at | 2024-01-03 01:19:37.896184 |
updated_at | 2024-01-03 01:19:37.896184 |
description | Cross-platform get screen info |
homepage | https://github.com/nashaofu/screen-capture/screen-info |
repository | https://github.com/nashaofu/screen-capture.git |
max_upload_size | |
id | 1086900 |
size | 30,852 |
Cross-platform get display info for MacOS、Windows、Linux. Like electron Display Object
use display_info::DisplayInfo;
use std::time::Instant;
fn main() {
let start = Instant::now();
let display_infos = DisplayInfo::all().unwrap();
for display_info in display_infos {
println!("display_info {display_info:?}");
}
let display_info = DisplayInfo::from_point(100, 100).unwrap();
println!("display_info {display_info:?}");
println!("运行耗时: {:?}", start.elapsed());
}
id
u32 - Unique identifier associated with the display.x
i32 - The display x coordinate.y
i32 - The display y coordinate.width
u32 - The display pixel width.height
u32 - The display pixel height.rotation
f32 - Can be 0, 90, 180, 270, represents screen rotation in clock-wise degrees.scale_factor
f32 - Output device's pixel scale factor.frequency
f32 - The display refresh rate.is_primary
bool - Whether the screen is the main screenOn Linux, you need to install libxcb
、libxrandr
Debian/Ubuntu:
apt-get install libxcb1 libxrandr2
Alpine:
apk add libxcb libxrandr
ArchLinux:
pacman -S libxcb libxrandr