定制 mumpo/fpdf-barcode 二次开发

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

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

mumpo/fpdf-barcode

最新稳定版本:1.0.1

Composer 安装命令:

composer require mumpo/fpdf-barcode

包简介

Fpdf allows to generate PDF files with Barcodes

README 文档

README

##laravel-Fpdf-barcode

Fork of https://github.com/anouarabdsslm/laravel-fpdf, with barcode and QR generation capabilities.

###Usage

$fpdf = new FpdfBarcode();
$fpdf->AddPage();

// Code 128 horizontal
// $x, $y, $code, $width, $height, $vertical
$fpdf->code128(15, 15, 'HORIZONTAL CODE', 85, 10, false);

// Code 128 vertical
// $x, $y, $code, $width, $height, $vertical
$fpdf->code128(150, 15, 'VERTICAL CODE', 85, 10, true);

// QR
// $code, $x, $y, $size
$fpdf->QR('QR CODE', 15, 50, 20);

$fpdf->Output();

统计信息

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

GitHub 信息

  • Stars: 4
  • Watchers: 0
  • Forks: 52
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-2-Clause
  • 更新时间: 2016-09-12