使用php 读取带有图像的Ms word文档

参见英文答案 > reading docx (Office Open XML) in PHP                                    7个
我有一大堆代码用于阅读MS Office Word文档.

它只读取文本而不是所有内容.

<?php
function read_file_docx($filename){

    $striped_content = '';
    $content = '';
    if(!$filename || !file_exists($filename)) return false;
    $zip = zip_open($filename);
    if (!$zip || is_numeric($zip)) return false;
while ($zip_entry = zip_read($zip)) {
        if (zip_entry_open($zip, $zip_entry) == FALSE) continue;
        if (zip_entry_name($zip_entry) != "word/document.xml") continue;
        $content .= zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
        zip_entry_close($zip_entry);
    }

    zip_close($zip);
    $content = str_replace('</w:r></w:p></w:tc><w:tc>', " ", $content);
    $content = str_replace('</w:r></w:p>', "\r\n", $content);
    $striped_content = strip_tags($content);

    return $striped_content;
}

$filename =“customers.docx”;

$content = read_file_docx($filename);
if($content !== false) {

    echo nl2br($content);   
}
else {
    echo 'Couldn\'t the file. Please check that file.';
}

?>

我想要阅读图像,图表和所有内容,并将其显示在网页中.

解决方法:

我认为您应该首先使用命令行Open Office或者将您的doc文档更改为pdf
*办公室.

与*办公室,它将是:

libreoffice --headless --convert-to pdf your_file_name.doc

然后使用pdf.js(https://github.com/mozilla/pdf.js/)在您的网站上显示文档(您不需要adobe reader)

这是另一个最小的例子
https://github.com/vivin/pdfjs-text-selection-demo(阅读minimal.js文件以了解如何插入pdf)

第二个选项是将doc转换为docx并使用https://github.com/stephen-hardy/DOCX.js

上一篇:javascript – 文件阅读器告诉我参数1不是blob?


下一篇:Java.io:性能调优