hiGetThumbnailFilename
hiGetThumbnailFilename( [?sizeg_size] ) =>s_filename/nil
Description
Returns the name of a thumbnail file for a given resolution. If no specific size is requested, the filename for the default thumbnail resolution is used (as set by hiGetThumbnailDefaultResolution).
The hiGetThumbnailFilename function does not check for the existence of the thumbnail, rather it instructs applications which file to look for in the view directory for a given resolution.
Argument
Value Returned
Example
hiGetThumbnailFilename()
=> "thumbnail_128x128.png"
hiGetThumbnailFilename( ?size 256)
=> "thumbnail_256x256.png"
hiGetThumbnailFilename( ?size 128:256)
=> "thumbnail_128x256.png"
Related Topics
Return to top