#include "l_bitmap.h"
L_LTKRN_API L_INT L_SetTempDirectory(pszTempDir)
L_TCHAR* pszTempDir; |
temporary directory |
Sets the directory in which LEADTOOLS will create temporary files.
Parameter |
Description |
pszTempDir |
Character string that contains the temporary directory name. This should be a valid directory name and the directory should exist. It cannot be NULL. |
Files used to store bitmaps of type TYPE_DISK will be created here. Also, disk tiles for TYPE_TILED bitmaps will be created here.
This function will have no effect on any existing bitmaps. The files associated with the existing bitmaps stay where they were. The new temporary directory will be used for creating new bitmaps.
If the image is allocated as TYPE_DISK, then the image should not be used in multiple threads.
Required DLLs and Libraries
For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
SUCCESS |
The function was successful. |
< 1 |
An error occurred. Refer to Return Codes. |
Win32, x64, Linux.
Functions: |
L_SetMemoryThresholds, L_GetMemoryThresholds, L_GetBitmapMemoryInfo, L_SetBitmapMemoryInfo, L_GetTempDirectory |
Topics: |
|
|
#define MAKE_IMAGE_PATH(pFileName) TEXT("C:\\Users\\Public\\Documents\\LEADTOOLS Images\\")pFileName
L_INT SetTempDirectoryExample(L_VOID)
{
L_INT nRet;
/* Set the current directry */
nRet = L_SetTempDirectory(MAKE_IMAGE_PATH(TEXT("")));
if(nRet != SUCCESS)
return nRet;
return SUCCESS;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET