ImageGear Professional for Linux
IG_mult_frame_duration_get

This function returns the duration of the given frame in 100 nanosecond units.

Declaration:

 
Copy Code
AT_ERRCOUNT ACCUAPI IG_mult_frame_duration_get(
        HIGMULT hMult,
        AT_UINT frameNum,
        LPAT_UINT lpDuration
);

Arguments:

Name Type Description
hMult HIGMULT Multimedia instance handle.
frameNum AT_UINT Frame number to get duration of (0 = first frame).
lpDuration LPAT_UINT Frame duration (in 100ns units).

Return Value:

Returns the number of ImageGear errors that occurred during this function call. If there are no errors, the return value is IGE_SUCCESS.

Supported Raster Image Formats:

This function does not process image pixels.

Example:

 
Copy Code
/* Retrieve duration of first frame */
AT_ERRCOUNT nErrcount;  /* Number of errors on stack */
HIGMULT hMult;          /* Multimedia instance handle */
AT_UINT duration;       /* Duration of frame in 100ns units */
nErrcount = IG_mult_frame_duration_get(hMult, 0, &duration);

Remarks:

This provides a reasonable level of accuracy for the short frame durations that are typical in video. To convert to milliseconds, divide by 10000.

Note that retrieving the durations of individual frames is essential for proper timing when the frame rate is variable, as is often the case with animated GIF files.

 

 


©2016. Accusoft Corporation. All Rights Reserved.

Send Feedback