- 论坛徽章:
- 0
|
win32 中perl 怎么取得屏幕高和宽?就像get_screen()类似.
ggglw 发表于 2010-03-26 22:23 ![]()
Hello,
I have used a rule with perl OLE + WMI to messure the screen size.
this is the sample code:
- use strict;
- use Win32::OLE qw(in);
- use Win32::OLE::Variant;
- my $strComputer = '.';
- my $objWMIService = Win32::OLE->GetObject('winmgmts:' .
- '{impersonationLevel=impersonate}!\\\\' . $strComputer .
- '\\root\\cimv2');
- my $wql = 'SELECT * FROM Win32_DisplayConfiguration';
- my $results = $objWMIService->ExecQuery($wql);
- foreach my $obj (in $results) {
- print "Graphic device : ", $obj->DeviceName, "\n";
- print "Color depth : ", $obj->BitsPerPel, "\n";
- print "Horizontal resolution : ", $obj->PelsWidth, "\n";
- print "Vertical resolution : ", $obj->PelsHeight, "\n";
-
- }
复制代码
D:\programming\perl>perl -w get_windows_screensize.pl
Graphic device : Intel(R) 82852/82855 GM/GME Graphics Controller
Color depth : 32
Horizontal resolution : 1024
Vertical resolution : 768 |
|