AWARE [SYSTEMS] Imaging expertise for the Delphi developer
AWare Systems, Imaging expertise for the Delphi developer, Home TIFF and LibTiff Mailing List Archive

LibTiff Mailing List

TIFF and LibTiff Mailing List Archive
June 2005

Previous Thread
Next Thread

Previous by Thread
Next by Thread

Previous by Date
Next by Date

Contact

The TIFF Mailing List Homepage
This list is run by Frank Warmerdam
Archive maintained by AWare Systems



Valid HTML 4.01!



Thread

2005.06.07 13:11 "simple image copy", by Nenad Nesic
2005.06.07 17:48 "Re: simple image copy", by Andrey Kiselev

2005.06.07 13:11 "simple image copy", by Nenad Nesic

Hi,
I´m totally new to libtiff and I´m happy about that it is now working in my
Visual Studio C++.
I just wanna copy the content of an image and save it as another file. How
can I do this? I tried this one: 
 TIFF* tif=TIFFOpen("e:/input.tif","r");
 TIFF* tif2=TIFFOpen("e:/output.tif","w");
 tif2=tif;
 TIFFClose(tif);
 TIFFClose(tif2);
 
but it doesn´t work.
Is there a function for copying data/image?