ixc-soft/tcpdf

IXCSoft对TCPDF包的适配。


README

为ERP IXCProvedor适配的包。

安装

composer require ixc-soft/tcpdf

代码质量

为了检查代码与PHP >= 7.0的兼容性

./vendor/bin/phpcs -p . --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility --runtime-set testVersion 7.0 ./ --extensions=php --ignore=*/vendor/*

使用Code Sniffer分析代码质量

php ./vendor/bin/phpcs --extensions=php --standard=rules-cs.xml ./

包的完整文档

https://github.com/tecnickcom/TCPDF

直接修改了基础类,可能与TCPDF更新版本后的版本存在差异。

IXCTCPDF类cell()方法:将参数$stretch的标准值从0更改为1。IXCTCPDF类getFontsList()方法:更改了方法逻辑。原来使用opendir、readdir和closedir来读取字体目录并将其加载到数组中。逻辑已更改为直接返回已构建的数组。IXCTCPDF类_destroy()方法:更改了方法逻辑。原来使用opendir、readdir和closedir来读取/tmp/目录并删除创建的PDF文件。逻辑已更改为不再使用readdir,而是使用glob来使文件搜索更轻量。