承接 snapapi/laravel-pdf 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

snapapi/laravel-pdf

Composer 安装命令:

composer require snapapi/laravel-pdf

包简介

SnapAPI driver for spatie/laravel-pdf — generate PDFs via the SnapAPI cloud API, no Chrome to manage

README 文档

README

Latest Version on Packagist License

A spatie/laravel-pdf v2 driver that generates PDFs via SnapAPI — a managed screenshot and PDF API powered by Chromium. No Chrome to install, no Lambda setup, no Docker layer headaches.

Pdf::view('invoices.receipt', ['invoice' => $invoice])
    ->format('A4')
    ->driver(SnapApiDriver::class)
    ->save(storage_path('invoices/receipt.pdf'));

Why use this?

  • No Chromium to manage — no binary updates, no memory limits to tune
  • Works everywhere — local, shared hosting, serverless, Docker
  • Full CSS support — Flexbox, Grid, Tailwind, web fonts, all rendered by a real Chromium
  • Free tier — 200 PDFs/month, no credit card

Requirements

Installation

composer require snapapi/laravel-pdf

Publish the config file:

php artisan vendor:publish --tag=snapapi-pdf-config

Configuration

Add your API key to .env:

SNAPAPI_KEY=sk_live_your_key_here

Get a free key at snapapi.pics — free tier includes 200 PDFs/month.

Usage

Basic PDF from Blade view

use Spatie\LaravelPdf\Facades\Pdf;
use SnapApi\LaravelPdf\SnapApiDriver;

Pdf::view('pdfs.invoice', ['invoice' => $invoice])
    ->driver(SnapApiDriver::class)
    ->save(storage_path('pdfs/invoice.pdf'));

Respond with PDF download

return Pdf::view('pdfs.invoice', ['invoice' => $invoice])
    ->driver(SnapApiDriver::class)
    ->format('A4')
    ->download('invoice.pdf');

Respond inline (open in browser)

return Pdf::view('pdfs.report', $data)
    ->driver(SnapApiDriver::class)
    ->inline('report.pdf');

Set format and margins

Pdf::view('pdfs.letter', $data)
    ->driver(SnapApiDriver::class)
    ->format('Letter')
    ->margins(top: 15, right: 10, bottom: 15, left: 10)
    ->landscape()
    ->save('/path/to/output.pdf');

From raw HTML

Pdf::html('<h1>Hello World</h1><p>Generated by SnapAPI.</p>')
    ->driver(SnapApiDriver::class)
    ->save('/path/to/output.pdf');

Set as default driver

In config/pdf.php (published from spatie/laravel-pdf):

'default_driver' => \SnapApi\LaravelPdf\SnapApiDriver::class,

Then you can omit ->driver() entirely:

Pdf::view('pdfs.invoice', $data)->save('invoice.pdf');

Configuration reference

config/snapapi-pdf.php:

return [
    'api_key'  => env('SNAPAPI_KEY', ''),
    'base_url' => env('SNAPAPI_BASE_URL', 'https://api.snapapi.pics'),
    'timeout'  => env('SNAPAPI_TIMEOUT', 60),
];
Key Default Description
api_key Your SnapAPI key (required)
base_url https://api.snapapi.pics API base URL
timeout 60 HTTP timeout in seconds

Testing

composer test

Changelog

1.0.0

  • Initial release
  • Supports generatePdf and savePdf (full spatie/laravel-pdf v2 driver interface)
  • Paper format, margins, orientation, custom width/height
  • Header and footer HTML support

License

MIT — see LICENSE

Links

snapapi/laravel-pdf 适用场景与选型建议

snapapi/laravel-pdf 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 02 月 25 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「pdf」 「laravel」 「screenshot」 「SnapAPI」 「chromium」 「html-to-pdf」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 snapapi/laravel-pdf 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 snapapi/laravel-pdf 我们能提供哪些服务?
定制开发 / 二次开发

基于 snapapi/laravel-pdf 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-02-25