文件名称:通用函数-altium designer - pcb设计入门
文件大小:1.24MB
文件格式:PDF
更新时间:2024-06-23 14:23:35
FreeImage 图形
第二章 位图函数参考 2.1 通用函数 以下函数对FreeImage提供支持的位图不做任何操作,它们是内部库管理函 数,这并不意味着它们不重要,没有它们,您将完全不可能载入任何位图。 FreeImage Initialise DLL API void DLL CALLCONV FreeImage Initialise(BOOL load local plugins only, FI DEFAULT(FALSE)); 初始化FreeImage库。当load local plugins only参数为TRUE时,FreeImage将 不使用外部插件。 !当使用FreeImage DLL库(作为动态连接库来使用)时,这个函数以参数 load local plugins only被设置为FALSE的形式被自动调用。当把FreeImage作为 静态连接库来使用时,您必须在程序的开始处唯一地调用一次该函数。 FreeImage DeInitialise DLL API void DLL CALLCONV FreeImage DeInitialise(); 撤消对FreeImage的初始化。 !当使用FreeImage DLL库(作为动态连接库来使用)时,这个函数被自动 调用。当把FreeImage作为静态连接库来使用时,您必须在程序的结束处唯一地 调用一次该函数,以清除在FreeImage库中分配的内存。 FreeImage GetVersion DLL API const char *DLL CALLCONV FreeImage GetVersion(); 返回包含DLL库动态连接库当前版本的一个字符串。 FreeImage GetCopyrightMessage DLL API const char *DLL CALLCONV FreeImage GetCopyrightMessage(); 返回包含一个标准版权信息的字符串,您可以在程序中展示该信息串。 3