web-dev-qa-db-ja.com

C ++で画面解像度を取得する方法は?

可能性のある複製:
hWndからモニター画面解像度を取得する方法

C++で画面解像度を取得する方法はありますか?
MSDNを検索しましたが、運がありません。私が見つけた最も近いものは ChangeDisplaySettingsEx() でしたが、それを変更せずにresを返す方法がないようです。

30
#include "wtypes.h"
#include <iostream>
using namespace std;

// Get the horizontal and vertical screen sizes in pixel
void GetDesktopResolution(int& horizontal, int& vertical)
{
   RECT desktop;
   // Get a handle to the desktop window
   const HWND hDesktop = GetDesktopWindow();
   // Get the size of screen to the variable desktop
   GetWindowRect(hDesktop, &desktop);
   // The top left corner will have coordinates (0,0)
   // and the bottom right corner will have coordinates
   // (horizontal, vertical)
   horizontal = desktop.right;
   vertical = desktop.bottom;
}

int main()
{       
   int horizontal = 0;
   int vertical = 0;
   GetDesktopResolution(horizontal, vertical);
   cout << horizontal << '\n' << vertical << '\n';
   return 0;
}

ソース: http://cppkid.wordpress.com/2009/01/07/how-to-get-the-screen-resolution-in-pixels/

54
eboix

Embarcadero C++ Builderでは、次のように取得できます

Screen->Height;
Screen->Width;

これは、Embarcadero製品(C++ Builder、Delphi)で提供されるVCLフレームワークに固有です。

0
Shaun07776