Grabber::setWindowSize Method

ビデオウィンドウのサイズを設定します。

構文

bool setWindowSize ( longwidth, long height );
パラメータ 説明
width ビデオウィンドウの幅を指定します。
posy ビデオウィンドウの高さを指定します。

戻り値

正常に処理が完了した場合はtrue、そうでない場合はfalse

備考

ビデオウィンドウの位置の設定は、Grabber::getDefaultWindowPositionクラスライブラリリファレンス>クラス>Grabber>Grabber::getDefaultWindowPosition Methodがfalseを返す場合にのみ可能となります。ビデオウィンドウサイズの変更を行いたい場合はまずGrabber::setDefaultWindowPosition(false)クラスライブラリリファレンス>クラス>Grabber>Grabber::setDefaultWindowPosition Methodをコールします。

サンプル

ここの例はビデオウィンドウサイズの設定方法を紹介しています。

long width  = 150;
long height = 100;
// ウィンドウの位置とサイズが設定可能かをチェック
if( grabber.getDefaultWindowPosition() == true )
{
  printf("Default window position is enabled.\n");
  printf("It is not possible to set the window position and size now!\n");
}
else
{
  if( grabber.setWindowSize( width, height ) == true )
  {
    printf("New window size is %d %d\n", width, height);
  }
   else
  {
    printf("Failed to set the new window size!\n");
  }
}