STC-GE83A
STC-GEC83A
User Guide
42
Rev 1.01
Caution:
Width, Height and PixelFormat all effect the image data size.
Please use GenICam
command name command
when changing these values, as exampled in the following sample code.
In the case to change the Width
BOOL SetWidth( PvDevice *pDevice, PvInt64 lValue )
{
PvGenInteger* lGenInteger =
dynamic_cast
<PvGenInteger*>( pDevice->GetGenParameters()->Get(
"Width"
) );
PvResult lResult = lGenInteger->SetValue(lValue);
return
lResult.IsOK();
}