defstudio / template-processor
.odt 到 .odt/.docx/.doc/.pdf 模板处理器和导出器
v0.3.4
2023-12-12 12:16 UTC
Requires
- php: ^8.1
- ext-dom: *
- defstudio/phpword: ^0.17.0
- illuminate/support: ^8.0 || ^9.0 || ^10.0
- symfony/process: ^5.1 || ^6.0
README
在 Docker 上安装 lowriter
ARG ENABLE_LIBREOFFICE_WRITER=0 RUN if [ ${ENABLE_LIBREOFFICE_WRITER} = 1 ] ; then \ mkdir -p /usr/share/man/man1 \ && mkdir -p /.cache/dconf && chmod -R 777 /.cache/dconf \ && apt-get update \ && apt-get install -y --no-install-recommends openjdk-11-jre-headless \ && apt-get install -y --no-install-recommends libreoffice-writer \ && apt-get install -y --no-install-recommends libreoffice-java-common ;\ fi;
使用方法
use DefStudio\TemplateProcessor\Elements\Image;Template::from($dock_template_path) ->compile([ // will replace all instances of ${single_key} with BAR 'single_key' => 'BAR', // and will repeat the block enclosed by ${array_key}[...]${/array_key} 'array_key' => [ ['name' => 'paul', 'age' => '36'], // with the name and age of each element of the array ['name' => 'john', 'age' => '24'], ['name' => 'ringo', 'age' => '48'], ['name' => 'george', 'age' => '22'] ], // will replace an image named ${signature} with the one passed as argument // you can set the image name with [right click on image]→properties→options→Name 'signature' => new Image(path: '/var/www/storage/app/signature.png', keep_ratio: true)) ]) // Each action can be done as a standalone call ->set('single_key', 'Bar') ->clone(block_name: 'users', variable_replacements: [ ['name' => 'paul', 'age' => '36'], ['name' => 'ringo', 'age' => '48'], ['name' => 'george', 'age' => '22'], ]) ->insert_image('signature', new Image(path: '/var/www/storage/app/signature.png', keep_ratio: true)) //add ->to_pdf() to convert to .pdf, otherwise an .odt file will be built ->to_pdf() // stores the document in a file ->store($output_file) // or returns a BinaryFileResponse ->download($dowloaded_file_name)
注意
- 模板处理器会尝试清理其变量/块标识符,如果检测失败,请确保选择并应用“取消格式化”操作