====== map_ExportMosaic ====== ===== Description ===== Export a mosaic map, and all its tiles, to a different file name/path. ===== Function prototype ===== bool CExtAPI::map_ExportMosaic(ZMAP hMap, const char* lpFileName, ZFORMAT hFormat, long nx, long ny, long TileSize, const char* lpProjMapName); ===== Arguments ===== ^ Name ^ Type ^ Comment ^ | //hMap// | ZMAP | A ZMAP handle to the mosaic map that is to be exported. | | //lpFileName// | const char* | A handle to a C-style string that contains the full path-name and extensions of the output [[l3dt:formats:specs:mmf|mosaic master file]]. | | //hFormat// | ZFORMAT | A ZFORMAT handle to the format variable to be used to save the mosaic. | | //nx// | long | The width of the map, in pixels. | | //ny// | long | The height of the map, in pixels. | | //TileSize// | long | The width and height of the tiles in the map. | | //lpProjMapName// | const char* | A handle to a C-style string that contains the name of the map in the project (usually null). Please refer to [[zeolite:functions:project_GetMap]] for valid map names. | ===== Return value ===== False if an error occurred, and true otherwise. ===== Comments ===== None.