uvinum/pdf-watermarker
Composer 安装命令:
composer require uvinum/pdf-watermarker
包简介
Simple PDF Watermarker
关键字:
README 文档
README
PDFWatermarker enables you to add an image as a watermark to existing PDF files. It uses FPDF that allows you to write PDF files and FPDI that allows you to import existing PDF documents into FPDF.
Using it, you can:
- Use jpg and png ( with alpha channels ) files with a 96 DPI resolution
- Easily position the watermark on the pages of the PDF file
Installation
Installing using composer
> composer require binarystash/pdf-watermarker:^2.0
Usage
<?php use BinaryStash\PdfWatermarker\Pdf; use BinaryStash\PdfWatermarker\Watermark; use BinaryStash\PdfWatermarker\FpdiPdfWatermarker as PDFWatermarker; // Specify path to the existing pdf $pdf = new Pdf('my.pdf'); // Specify path to image. The image must have a 96 DPI resolution. $watermark = new Watermark('watermark.png'); // Create a new watermarker $watermarker = new PDFWatermarker($pdf, $watermark); // Save the new PDF to its specified location $watermarker->savePdf('output.pdf'); ?>
Options
<?php use BinaryStash\PdfWatermarker\Position; // Set the position of the watermark // All possible positions can be found in Position::options $watermarker->setPosition(new Position('BottomCenter')); // Alternatively $watermarker->setPosition(Position::BottomCenter()); // Place watermark behind original PDF content. Default behavior places it over the content. $watermarker->setAsBackground(); // Only Watermark specific range of pages // This would only watermark page 3 and 4 $watermarker->setPageRange(3, 4); ?>
Output Options
<?php // The filename is optional for all output options $watermarker->savePdf(); // Start a download of the PDF $watermarker->downloadPdf('output.pdf'); // Send the PDF to standard out $watermarker->stdOut('output.pdf'); ?>
Support
Report bugs at https://github.com/binarystash/pdf-watermarker/issues.
uvinum/pdf-watermarker 适用场景与选型建议
uvinum/pdf-watermarker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 91.79k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2019 年 05 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「pdf」 「watermark」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 uvinum/pdf-watermarker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 uvinum/pdf-watermarker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 uvinum/pdf-watermarker 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Powerful PHP class using GD library to work easily with images including layer notion (like Photoshop or GIMP)
Powerful PHP class using GD library to work easily with images including layer notion (like Photoshop or GIMP)
Image manipulation library for Laravel 8 based on Imagine and inspired by Croppa for easy url based manipulation
Generate text watermark on PDF and Word documents with PHP
Official PHP integration for Optidash - AI-powered image optimization and processing API. We will drastically speed-up your websites and save you money on bandwidth and storage.
Provides TCPDF integration for Symfony
统计信息
- 总下载量: 91.79k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-05-29