How can I convert to TIFF file format? [modified]
-
Hello, How can i convert any file format to tiff file format? Any DLL, source code or free app via command line? Alternatively, can be a solution that convert any file to another format and later to a tiff format. Any idea? []'s Cris. -- modified at 15:48 Wednesday 12th July, 2006
-
Hello, How can i convert any file format to tiff file format? Any DLL, source code or free app via command line? Alternatively, can be a solution that convert any file to another format and later to a tiff format. Any idea? []'s Cris. -- modified at 15:48 Wednesday 12th July, 2006
GDI+ is a dll that you can redistribute, that comes with any VC version > 6, or is in the PSDK for VC6. It can load TIFF as well as JPG/GIF/PNG. I *think* it loads tiff..... Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
Hello, How can i convert any file format to tiff file format? Any DLL, source code or free app via command line? Alternatively, can be a solution that convert any file to another format and later to a tiff format. Any idea? []'s Cris. -- modified at 15:48 Wednesday 12th July, 2006
As Christian said, use GDI+. Be aware that it supports only SOME TIFF files. (Look at TIFF as a container of an image; how the image is actually formatted/compressed is essentially infinite. Before you get too alarmed, there are TIFF formats Apple has never published.) Fortunately, GDI+ handles the more common formats. Anyone who thinks he has a better idea of what's good for people than people do is a swine. - P.J. O'Rourke
-
Hello, How can i convert any file format to tiff file format? Any DLL, source code or free app via command line? Alternatively, can be a solution that convert any file to another format and later to a tiff format. Any idea? []'s Cris. -- modified at 15:48 Wednesday 12th July, 2006
-
As Christian said, use GDI+. Be aware that it supports only SOME TIFF files. (Look at TIFF as a container of an image; how the image is actually formatted/compressed is essentially infinite. Before you get too alarmed, there are TIFF formats Apple has never published.) Fortunately, GDI+ handles the more common formats. Anyone who thinks he has a better idea of what's good for people than people do is a swine. - P.J. O'Rourke
-
Ok, but libtiff only convert image file to tiff file. I need to convert any file (readable) to tiff format. []'s
Right, which means you're going to have to do some work. Starting with libjpeg to decompress jpegs and libpng to decompress pngs. gifs are easy to read, and bmps are trivial; those should cover most image formats. Otherwise, if you don't need to build this into your program, irfanview will probably do what you want. earl
-
I don't understand your question since GDI+ only handles image files. Anyone who thinks he has a better idea of what's good for people than people do is a swine. - P.J. O'Rourke