ScnLib_GetVideoResolution()

ScnLib_GetVideoResolution()

标准版专业版超级版至尊版
C++ __declspec(dllimport) void __stdcall ScnLib_GetVideoResolution(int *nWidth, int *nHeight);
C# [DllImport("ScnLib.dll")] public static extern void ScnLib_GetVideoResolution(ref int Width, ref int Height);
Basic Public Declare Sub ScnLib_GetVideoResolution Lib "ScnLib.dll" (ByRef Width As Int32, ByRef Height As Int32)
Delphi procedure ScnLib_GetVideoResolution(var Width: Integer; var Height: Integer); stdcall; external 'ScnLib.dll';
  • 描述
    检测当前视频的实际分辨率。

  • 参数
    • Width [out]
      实际视频分辨率的宽度。
    • Height [out]
      实际视频分辨率的高度。
  • 返回值
    无。

  • 备注
    调用此函数检测当前视频的实际分辨率。

  • 参见
    ScnLib_SetVideoResolution()

下载 SDK API 总览