 
            This function lets you tell whether or not the current frame is valid.
| 
                        Copy Code
                     | |
|---|---|
| 
AT_ERRCOUNT ACCUAPI IG_mult_current_frame_is_valid(
        HIGMULT hMult, 
        LPAT_BOOL lpbValid
);
 | |
| Name | Type | Description | 
|---|---|---|
| hMult | HIGMULT | Multimedia instance handle. | 
| lpbValid | LPAT_BOOL | Boolean that is set to TRUE if the current frame is valid. | 
Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.
This function does not process image pixels.
Media Player
| 
                        Copy Code
                     | |
|---|---|
| AT_ERRCOUNT nErrcount; /* Number of errors on stack */ HIGMULT hMult; /* Multimedia instance handle */ HIGEAR hIGear; /* HIGEAR handle of image */ AT_BOOL bValid; /* Is current frame valid? */ while (IG_mult_current_frame_is_valid(hMult, &bValid) == IGE_SUCCESS && bValid) { nErrcount = IG_mult_current_frame_image_get(hMult, &hIGear); nErrcount = IG_mult_current_frame_advance(hMult); } | |
You can use this function in a loop over all of the frames to determine when you have advanced beyond the last available frame.