Foxit PDF SDK
fs_pdfa.h
Go to the documentation of this file.
1 
16 #ifndef FS_PDFA_H_
17 #define FS_PDFA_H_
18 
19 #include "fs_compliancecommon.h"
20 
26 namespace foxit {
30 namespace addon {
34 namespace compliance {
41 class PDFACompliance FS_FINAL : public Base {
42  public:
48  typedef enum _Version {
65  } Version;
66 
67 
70  // User is strongly recommended NOT to use this method; otherwise unknown situation may occur.
71  explicit PDFACompliance(FS_HANDLE handle);
79  PDFACompliance(const PDFACompliance& other);
80 
96  bool operator == (const PDFACompliance& other) const;
97 
105  bool operator != (const PDFACompliance& other) const;
106 
114  bool IsEmpty() const;
115 
130  ResultInformation Verify(Version verify_version, const wchar_t* src_pdf_path,
131  int first_page_index = 0, int last_page_index = -1,
132  ProgressCallback* progress_callback = NULL);
133 
145  ResultInformation ConvertPDFFile(const wchar_t* src_pdf_path, const wchar_t* saved_pdf_path,
146  Version convert_to_version, ProgressCallback* progress_callback = NULL);
147 
148 };
149 
150 } // namespace compliance
151 } // namespace addon
152 } // namespace foxit
153 
154 #endif // FS_PDFA_H_
155 
Definition: fs_compliancecommon.h:359
Definition: fs_compliancecommon.h:127
ResultInformation ConvertPDFFile(const wchar_t *src_pdf_path, const wchar_t *saved_pdf_path, Version convert_to_version, ProgressCallback *progress_callback=0)
Convert a PDF file with specified PDFA version.
Header file for compliance basic classes and methods.
Version
Enumeration for PDF/A version.
Definition: fs_pdfa.h:48
void * FS_HANDLE
Handle type.
Definition: fs_basictypes.h:214
bool operator==(const PDFACompliance &other) const
Equal operator.
Definition: fs_basictypes.h:397
Foxit namespace.
Definition: fs_compare.h:27
ResultInformation Verify(Version verify_version, const wchar_t *src_pdf_path, int first_page_index=0, int last_page_index=-1, ProgressCallback *progress_callback=0)
Verify a PDF file with specified PDFA version.
bool operator !=(const PDFACompliance &other) const
Not equal operator.
#define NULL
The null-pointer value.
Definition: fx_system.h:767
bool IsEmpty() const
Check whether current object is empty or not.
PDFACompliance & operator=(const PDFACompliance &other)
Assign operator.