mnvx / lowrapper
LibreOffice转换器的PHP封装
1.0.11
2022-08-03 10:39 UTC
Requires
- php: ^7.2|^8.0
- psr/log: ^1|^2|^3
- symfony/process: ^3.1|^4.1|^5.0|^6.0
Requires (Dev)
- phpunit/phpunit: ^8.0
README
LibreOffice转换器的PHP封装
将文档转换为各种格式的简单方法。
例如:html -> docx, html -> pdf, docx -> html 以及更多。
使用方法
use Mnvx\Lowrapper\Converter; use Mnvx\Lowrapper\LowrapperParameters; use Mnvx\Lowrapper\Format; // Create converter $converter = new Converter(); // Describe parameters for converter $parameters = (new LowrapperParameters()) // HTML document ->setInputFile('test.html') // Format of result document is docx ->setOutputFormat(Format::TEXT_DOCX) // Result file name ->setOutputFile('path-to-result-docx.docx'); // Run converter $converter->convert($parameters);
更多 示例
要求
- PHP 5.5+
- libreoffice-core
安装
sudo add-apt-repository ppa:libreoffice/ppa sudo apt-get update sudo apt-get install default-jdk -y sudo apt-get install python-software-properties -y sudo apt-get install software-properties-common -y sudo apt-get install libreoffice-core --no-install-recommends sudo apt-get install libreoffice-writer composer require mnvx/lowrapper
将libreoffice安装到docker容器中的示例
FROM php:7.2-fpm WORKDIR /var/www/html # Install libreoffice headless RUN apt update -y \ && mkdir -p /usr/share/man/man1 \ && apt -y install default-jdk-headless libreoffice-core libreoffice-writer libreoffice-calc RUN mkdir -p /var/www/.cache/dconf \ && mkdir -p /var/www/.config/libreoffice \ && chmod -R ugo+rwx /var/www/.cache \ && chmod -R ugo+rwx /var/www/.config
运行测试
./vendor/bin/phpunit
许可协议
在MIT许可下发布