Grabber::getWindowPosition Method
ライブ画像を表示しているウィンドウの位置とサイズを取得します。
構文
bool getWindowPosition( long& posx, long& posy, long& width, long& height);
パラメータ | 説明 |
---|---|
posx | ビデオウィンドウの左上隅のX座標を取得します。 |
posy | ビデオウィンドウの左上隅のY座標を取得します。 |
width | ビデオウィンドウの幅を取得します。デフォルトは選択しているビデオフォーマットの幅となります。 |
height | ビデオウィンドウの高さを取得します。デフォルトは選択しているビデオフォーマットの高さとなります。 |
戻り値
成功した場合はtrue、そうでない場合はfalse。
サンプル
このサンプルはビデオウィンドウのサイズと位置を取得しlong型の変数に格納する方法です。
long posx;
long posy;
long width;
long height;
if( grabber.getWindowPosition( posx, posy, width, height ) == true )
{
printf("Current window position is %d %d %d %d\n",posx, posy, width, height);
}
関連項目
Grabberクラスライブラリリファレンス>クラス>Grabber, Grabber::setWindowPositionクラスライブラリリファレンス>クラス>Grabber>Grabber::setWindowPosition Method, Grabber::setWindowSizeクラスライブラリリファレンス>クラス>Grabber>Grabber::setWindowSize Method, Grabber::setDefaultWindowPositionクラスライブラリリファレンス>クラス>Grabber>Grabber::setDefaultWindowPosition Method, Grabber::getDefaultWindowPositionクラスライブラリリファレンス>クラス>Grabber>Grabber::getDefaultWindowPosition Method