Command
QisLib_SetImageFormat Function: int QisLib_SetImageFormat(int ImageFormat); Inputs: ImageFormat: _QISIF_OFF or _QISIF_GIF or _QISIF_XPM or _QISIF_BITMAP8U [Unix/Linux] _QISIF_OFF or _QISIF_GIF or _QISIF_BITMAP8C [Windows] Return: 0 (always) Errors: - Description: - Sets the format of the image returned by QisLib_GetImage, QisLib_Redraw or QisLib_ZoomHome. - QisLib_SetImageFormat can set one of the following formats: _QISIF_OFF: no image is generated by QisLib_Redraw or QisLib_ZoomHome but QisLib_GetImage yields GIF image. _QISIF_GIF: QisLib_Redraw, QisLib_GetImage and QisLib_ZoomHome yield GIF image. _QISIF_XPM: QisLib_Redraw, QisLib_GetImage and QisLib_Zoom_Home yield XPM image. (Unix/Linux Only) _QISIF_BITMAP8U: QisLib_Redraw, QisLib_GetImage and QisLib_ZoomHome yield an 8bit uncompressed bitmap image. (Unix/Linux only) _QISIF_BITMAP8C: QisLib_Redraw, QisLib_GetImage and QisLib_ZoomHome yield a Windows DIB image. (Windows only) - When QisLib_SetDrawWindowID is active [Client wants QisLib to draw in the user program's drawing area] no image is generated by the above mentioned functions irrespective of this setting.References: QisLib_SetDrawWindowID QisLib_Redraw QisLib_GetImage QisLib_ZoomHome _QISIF_OFF _QISIF_GIF _QISIF_XPM _QISIF_BITMAP8U _QISIF_BITMAP8C |