Reordering Pages in a File on Disk

 

Use ReorderTiffFile from the BiTiff DLL or OCX for reordering pages.

 

[C++]

 

/* Reordering pages in a TIFF file*/

 

BOOL bRet;

 

// 1. parameter: Path and name of the image file to reorder

 

bRet = ReorderTiffFile(_T(“C:\\Images\\Test.tif”));

 

if (!bRet)

{

            // Error

}

 

[C#]

 

/* Reordering pages in a TIFF file*/

 

bool bRet;

 

// 1. parameter: Path and name of the image file to reorder

 

bRet = BiTiff.ReorderTiffFile(“C:\\Images\\Test.tif”);

 

if (!bRet)

{

            // Error

}