dev-master 2024-09-16 12:01 UTC

This package is auto-updated.

Last update: 2025-04-16 13:39:41 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) {
    // 抛出异常
}