Windows
ComPDFKit Conversion SDK
Guides

Convert PDF Documents to TXT Documents

 

string resPath = "***";
string inputFilePath = "***";
string outputFolderPath = "***";
string outputFileName = "***";

CPDFConverter.Init(resPath);
CPDFConverterTxt converter = new CPDFConverterTxt(inputFilePath);

CPDFConvertTxtOptions txtOptions = new CPDFConvertTxtOptions();
txtOptions.IsAllowOCR = false;

int pageCount = converter.GetPagesCount();
int[] pageArray = new int[pageCount];
for (int i = 0; i < pageArray.Length; i++)
{
    pageArray[i] = i + 1;
}

ConvertError error = ConvertError.ERR_UNKNOWN;
converter.Convert(outputFolderPath, ref outputFileName,txtOptions, pageArray, ref error, getPorgress);