Link to home
Start Free TrialLog in
Avatar of tussfw
tussfw

asked on

C++ Tiff file manipulation API

Is there API in MS Visual C++  to manipulate TIFF files?
Avatar of green
green

You can try ATL's CImage class. It is based on GDI+ and can load tiff files.
#include <atlimage.h>
CImage image;
if (image.Load("file.tiff") == S_OK)
{
  //
}
Avatar of tussfw

ASKER

Thanks for the info but maybe I should clarify something.

We are using MS Visual C++ 6.0
CImage works in VC6. GDI+ is included in windows 2000 and later.
ASKER CERTIFIED SOLUTION
Avatar of green
green

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial