bmp 转为jpg
将bmp,png gif,jpg 格式之间的相互转换,有很多类库可以使用...jpeglib,Image, CxImage 等等.... 其他我没用过,我只用过CxImage....感觉还不错...首先到 http://www.codeproject.com/bitmap/cximage.asp 下载 Download full source files - 2.10 Mb . 需要使用CxImage的时候#include "ximage.h" 你的库是不是把JPG给关掉了? ximacfg.h #define CXIMAGE_SUPPORT_JPG 1 调试时 如果要实现bmp->jpg 则必须打开 #define CXIMAGE_SUPPORT_BMP 1 #define CXIMAGE_SUPPORT_GIF 1 #define CXIMAGE_SUPPORT_JPG 1 以上为必须打开,下面的随便............ #define CXIMAGE_SUPPORT_PNG 0// #define CXIMAGE_SUPPORT_MNG 0 #define CXIMAGE_SUPPORT_ICO 1 #define CXIMAGE_SUPPORT_TIF 0// #define CXIMAGE_SUPPORT_TGA 0// #define CXIMAGE_SUPPORT