定制 chokri/pdfkit 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

chokri/pdfkit

最新稳定版本:2.1.0

Composer 安装命令:

composer require chokri/pdfkit

包简介

PDF tool kit

README 文档

README

Latest Stable Version License

PDFKit

A simple PHP library for making PDF files. Uses setasign/fpdf and works with PHP 8.4 or newer.

Installation

Install with Composer:

composer require chokri/pdfkit

Basic Example

require 'vendor/autoload.php';

use Chokri\PDF\Pdf;

$pdf = new Pdf();
$pdf->addTitlePage('My PDF Title', 'Subtitle', 'Author Name');
$pdf->addTable(['Col1', 'Col2'], [['A', 'B'], ['C', 'D']]);
$pdf->addImageCentered('logo.png', 80);
$pdf->addPageNumbering();
$pdf->Output('I', 'example.pdf');

Features

  • Easy to use
  • PSR-4 autoloading
  • PHP 8.4+ support
  • GPL-3.0 license
  • Write HTML with WriteHTML()
  • Add tables and images
  • Custom header and footer
  • Unit tested with PHPUnit

License

GPL-3.0-or-later. See LICENCE.

Changelog

See CHANGELOG.md for updates.

Author

Chokri Khalifa — chokrikhalifa.com

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 2
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 2
  • Watchers: 0
  • Forks: 3
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0-or-later
  • 更新时间: 2025-07-04