PDF SDK Documentation
Comprehensive Guide for Developers: Features, Integration, and API Reference
Loading...
Searching...
No Matches
pdf2text.h
Go to the documentation of this file.
1
// Copyright (c) 2009-2025 Avanquest Software. All rights reserved.
2
3
#ifndef PDFSDK_CONVERT_PDF2TEXT_H_INCLUDED_
4
#define PDFSDK_CONVERT_PDF2TEXT_H_INCLUDED_
5
11
#include <pdfsdk/core.h>
12
13
#ifdef PDF_PDF2TEXT_EXPORTS
14
#define PDF_PDF2TEXT_API PDFSDK_EXPORT_
15
#else
16
#define PDF_PDF2TEXT_API PDFSDK_IMPORT_
17
#endif
18
19
struct
PDFConvertToTextParams
{
20
const
wchar_t
* outputFile;
21
bool
convertCroppedText;
22
const
wchar_t
* dividerString;
23
};
24
25
#ifdef __cplusplus
26
extern
"C"
{
27
#endif
28
29
PDF_PDF2TEXT_API
PDErrCode
PDFSDK_CALLCONV PDFConvertToText(PDDoc source,
30
const
PDPageRange
* pageRange,
31
const
PDProgressMonitor
* progress,
32
void
* progressData,
33
const
PDFConvertToTextParams
*);
34
35
#ifdef __cplusplus
36
}
37
#endif
38
39
#endif
// PDFSDK_CONVERT_PDF2TEXT_H_INCLUDED_
PDErrCode
int32_t PDErrCode
Definition
errors.h:44
PDFConvertToTextParams
Definition
pdf2text.h:19
PDPageRange
Definition
document.h:37
PDProgressMonitor
Definition
progress_monitor.h:15