Save
Contents
[
Hide
]Save(string, SaveFormat, bool, SpellCheckLanguage, string, string, PdfOptimizationMode)
Saves the document as the plain text, PDF or Microsoft Word Document.
public void Save(string fullFileName, SaveFormat saveFormat, bool applySpellingCorrection,
SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null,
string embeddedFontPath = null,
PdfOptimizationMode optimizePdf = PdfOptimizationMode.MAXIMUM_QUALITY)
| Parameter | Type | Description |
|---|---|---|
| fullFileName | String | Filename with a path for saving recognition result in the selected format. |
| saveFormat | SaveFormat | Document format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml). |
| applySpellingCorrection | Boolean | Set true to correct misspelled words in case you have such in your recognition result. |
| language | SpellCheckLanguage | Dictionary for spell check (optional). |
| dictionaryPath | String | Optionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n |
| embeddedFontPath | String | Optionally. Full path to the user font. |
| optimizePdf | PdfOptimizationMode | Reduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved. |
See Also
- enum SaveFormat
- enum SpellCheckLanguage
- enum PdfOptimizationMode
- class RecognitionResult
- namespace Aspose.OCR
- assembly Aspose.OCR
Save(string, SaveFormat, string, PdfOptimizationMode)
Saves the document as the plain text, PDF or Microsoft Word Document.
public void Save(string fullFileName, SaveFormat saveFormat, string embeddedFontPath = null,
PdfOptimizationMode optimizePdf = PdfOptimizationMode.MAXIMUM_QUALITY)
| Parameter | Type | Description |
|---|---|---|
| fullFileName | String | Filename with a path for saving recognition result in the selected format. |
| saveFormat | SaveFormat | Document format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml). |
| embeddedFontPath | String | Optionally. Full path to the user font. |
| optimizePdf | PdfOptimizationMode | Reduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved. |
See Also
- enum SaveFormat
- enum PdfOptimizationMode
- class RecognitionResult
- namespace Aspose.OCR
- assembly Aspose.OCR
Save(string, SaveFormat, PdfOptimizationMode)
Saves the document as the plain text, PDF or Microsoft Word Document.
public void Save(string fullFileName, SaveFormat saveFormat, PdfOptimizationMode optimizePdf)
| Parameter | Type | Description |
|---|---|---|
| fullFileName | String | Filename with a path for saving recognition result in the selected format. |
| saveFormat | SaveFormat | Document format (Docx, Txt, Pdf, Xlsx, Rtf, Json, Xml). |
| optimizePdf | PdfOptimizationMode | Reduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved. |
See Also
- enum SaveFormat
- enum PdfOptimizationMode
- class RecognitionResult
- namespace Aspose.OCR
- assembly Aspose.OCR
Save(Stream, SaveFormat, PdfOptimizationMode)
Saves the document as the plain text, PDF or Microsoft Word Document.
public void Save(Stream stream, SaveFormat saveFormat, PdfOptimizationMode optimizePdf)
| Parameter | Type | Description |
|---|---|---|
| stream | Stream | MemoryStream for saving recognition result in the selected format. |
| saveFormat | SaveFormat | Document format (Docx, Txt, Pdf). |
| optimizePdf | PdfOptimizationMode | Reduce the PDF file size by lowering the quality of background images. By default, the original image quality is preserved. |
See Also
- enum SaveFormat
- enum PdfOptimizationMode
- class RecognitionResult
- namespace Aspose.OCR
- assembly Aspose.OCR
Save(Stream, SaveFormat, bool, SpellCheckLanguage, string)
Saves the document as the plain text, PDF or Microsoft Word Document.
public void Save(Stream stream, SaveFormat saveFormat, bool applySpellingCorrection = false,
SpellCheckLanguage language = SpellCheckLanguage.Eng, string dictionaryPath = null)
| Parameter | Type | Description |
|---|---|---|
| stream | Stream | MemoryStream for saving recognition result in the selected format. |
| saveFormat | SaveFormat | Document format (Docx, Txt, Pdf). |
| applySpellingCorrection | Boolean | Set true to correct misspelled words in case you have such in your recognition result. |
| language | SpellCheckLanguage | Dictionary for spell check (optional). |
| dictionaryPath | String | Optionally. Full path to the user dictionary in .txt format. Format is [word - space - frequence(number)]. Example: the 23135851162\nthat 3400031103\n |
See Also
- enum SaveFormat
- enum SpellCheckLanguage
- class RecognitionResult
- namespace Aspose.OCR
- assembly Aspose.OCR