Image.h
资源名称:QuakeBsp.rar [点击查看]
上传用户:cxh8989
上传日期:2021-01-22
资源大小:2544k
文件大小:1k
源码类别:
射击游戏
开发平台:
Visual C++
- #ifndef _IMAGE_H
- #define _IMAGE_H
- #include "jpeglib.h"
- #define TGA_RGB 2
- #define TGA_A 3
- #define TGA_RLE 10
- struct tImage
- {
- int channels;
- int sizeX;
- int sizeY;
- unsigned char *data;
- };
- /** 载入位图 */
- tImage *LoadBMP(const char *strFileName);
- /** 载入TGA文件 */
- tImage *LoadTGA(const char *strFileName);
- /** 载入JPG文件 */
- tImage *LoadJPG(const char *strFileName);
- /** 解码JPG文件 */
- void DecodeJPG(jpeg_decompress_struct* cinfo, tImage *pImageData);
- #endif