2006.07.26 12:33 "[Tiff] how to convert tiff into bmp file", by malathi p

2006.07.26 13:30 "RE: [Tiff] how to convert tiff into bmp file", by

           Iam trying to convert tiff file into a bmp file using cdib class(in vc++ ,SDI),but when i convert it become an invalied file,is there is any direct method to convert the tiff into bmp without using third party tool.

CDib? Are you referring to this? http://home16.inet.tele.dk/hansm/visualc/cdib.htm

Anyway, you could use libtiff to load and decompress the TIFF into "raw" (uncompressed) bitmap data, create a CImage instance that uses the data, and then use CImage::Save() to save in BMP format. If you are having trouble creating a DIB from the raw data, search the newsgroups (Google Groups, etc) for "create DIB from raw data" or something similar.