Convert PDF to Word
Overview
Converting PDF to Word is an operation that converts the PDF format file into a editing Word format file. By converting PDF to Word, you can easily edit, modify, insert, or delete text and pictures, adjust layout and properties.
Layout differences
Word's Streaming Layout Ideal for editing, with your editing, the content dynamically adapts to different positions. However, a Word file would display differently due to the incompatibility of various software or app versions. It makes it unsuitable for precise documentation like electronic files or certificates.
PDF's Fixed Page Layout: Ensures a stable, uniform appearance and print quality across all devices. The content and formatting are locked upon creation, making alterations difficult without affecting the overall layout. It's preferred for formal documentation such as business reports and official electronic records.
Sample
This sample demonstrates how to convert PDFs to Word files.
$options = new \ConvertOptions();
$options->word_flow_layout = false;
$code = startPdfToWord('word.pdf', 'password', 'path/output', $options, $handler);
$options->word_flow_layout = true;
$code = startPdfToWord('word.pdf', 'password', 'path/output', $options, $handler);