dev-master 2023-08-23 03:41 UTC

This package is auto-updated.

Last update: 2024-05-23 05:42:59 UTC


README

pdf处理

example:

$demo = new Pdf([
    'outPath' => "app/pdf/temp", //存放拆分出的文件夹
    'tempPath' => "app/pdf/config", //要拆分的pdf文件存放目录以及脚本config目录
]);
$demoPdf = "test.pdf";
try {
    $list = $demo->split($demoPdf);
    
} catch (Exception $e) {
    // 抛出异常
}