FAQ
Does OCR work on x86 architecture?
Currently, OCR only works on x64 architecture.
Why does my C sample fail on Windows when I pass
"input.pdf"?On Windows, most path parameters use
COMPDFKIT_STRING, which isconst wchar_t*. Use wide strings such asL"input.pdf", or use theCPDF_TEXThelper macro from this guide for string literals.Why are my conversion options different from the C++ sample defaults?
CConvertOptionis a C structure and has no constructor. Initialize it explicitly or use a helper similar toCPDF_DefaultConvertOptionin this guide.