SaveMultipageDocument

SaveMultipageDocument(string, SaveFormat, List<RecognitionResult>, string, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(string fullFileName, SaveFormat saveFormat, 
    List<RecognitionResult> results, string embeddedFontPath = null, 
    PdfOptimizationMode optimizePdf = PdfOptimizationMode.MAXIMUM_QUALITY)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
embeddedFontPathStringOptionally. Full path to the user font.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also


SaveMultipageDocument(string, SaveFormat, List<RecognitionResult>, bool, SpellCheckLanguage, string, string, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(string fullFileName, SaveFormat saveFormat, 
    List<RecognitionResult> results, bool applySpellingCorrection, 
    SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null, 
    string embeddedFontPath = null, 
    PdfOptimizationMode optimizePdf = PdfOptimizationMode.MAXIMUM_QUALITY)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
applySpellingCorrectionBooleanSet true to correct misspelled words in case you have such in your recognition result.
languageSpellCheckLanguageDictionary for spell check (optional).
dictionaryPathStringOptionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n
embeddedFontPathStringOptionally. Full path to the user font.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also


SaveMultipageDocument(string, SaveFormat, List<RecognitionResult>, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(string fullFileName, SaveFormat saveFormat, 
    List<RecognitionResult> results, PdfOptimizationMode optimizePdf)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also


SaveMultipageDocument(string, SaveFormat, List<RecognitionResult>)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(string fullFileName, SaveFormat saveFormat, 
    List<RecognitionResult> results)
ParameterTypeDescription
fullFileNameStringFilename with a path for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results, PdfOptimizationMode optimizePdf)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>, string)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results, string embeddedFontPath = null)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
embeddedFontPathStringOptionally. Full path to the user font.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>, string, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results, string embeddedFontPath, PdfOptimizationMode optimizePdf)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
embeddedFontPathStringOptionally. Full path to the user font.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>, bool, SpellCheckLanguage, string, string)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results, bool applySpellingCorrection, 
    SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null, 
    string embeddedFontPath = null)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
applySpellingCorrectionBooleanSet true to correct misspelled words in case you have such in your recognition result.
languageSpellCheckLanguageDictionary for spell check (optional).
dictionaryPathStringOptionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n
embeddedFontPathStringOptionally. Full path to the user font.

See Also


SaveMultipageDocument(Stream, SaveFormat, List<RecognitionResult>, bool, SpellCheckLanguage, string, string, PdfOptimizationMode)

Allows to get multipage document from list of RecognitionResult objects

public static void SaveMultipageDocument(Stream stream, SaveFormat saveFormat, 
    List<RecognitionResult> results, bool applySpellingCorrection, SpellCheckLanguage language, 
    string dictionaryPath, string embeddedFontPath, PdfOptimizationMode optimizePdf)
ParameterTypeDescription
streamStreamMemoryStream for saving recognition result in the selected format.
saveFormatSaveFormatDocument format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml).
resultsList`1List of RecognitionResult objects.
applySpellingCorrectionBooleanSet true to correct misspelled words in case you have such in your recognition result.
languageSpellCheckLanguageDictionary for spell check (optional).
dictionaryPathStringOptionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n
embeddedFontPathStringOptionally. Full path to the user font.
optimizePdfPdfOptimizationModeReduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved.

See Also