定制 zanysoft/laravel-pdf 二次开发

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

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

zanysoft/laravel-pdf

最新稳定版本:v3.0.0

Composer 安装命令:

composer require zanysoft/laravel-pdf

包简介

Laravel PDF - for generating pdf invoice or documents with mPDF wrapper.

README 文档

README

Easily generate PDF documents from HTML right inside of Laravel using this PDF wrapper.

Contents

Installation Guide

Require this package in your composer.json or install it by running:

composer require zanysoft/laravel-pdf

To start using Laravel, add the Service Provider and the Facade to your config/app.php:

'providers' => [
	// ...
	ZanySoft\LaravelPDF\PdfServiceProvider::class
]
'aliases' => [
	// ...
	'PDF' => ZanySoft\LaravelPDF\Facades\PDF::class
]

Configuration

The defaults configuration settings are set in config/pdf.php. Copy this file to your own config directory to modify the values. You can publish the config using this command:

php artisan vendor:publish --provider="ZanySoft\LaravelPDF\PdfServiceProvider"

Basic Usage

To use Laravel PDF add something like this to one of your controllers. You can pass data to a view in /resources/views.

    use ZanySoft\LaravelPDF\Facades\PDF;
    
    $data = ['foo' => 'bar'];
    $pdf = PDF::make('document.pdf');
    $pdf->loadView('pdf.document', $data);
    
    return $pdf->stream();

or

    use ZanySoft\LaravelPDF\PDF;

    $pdf = new PDF();
    $pdf->loadView('pdf.document', $data);
    
    return $pdf->stream('document.pdf');

If you want to generate from html content:

    $content = "Hello this is first pdf file."
    $pdf->loadHTML($content);
    
    return $pdf->stream('document.pdf');

If you want to generate from files:

    $file = "file.txt"
    $pdf->loadFile($file);
    
    return $pdf->stream('document.pdf');

If you want download pdf file:

    return $pdf->embed('document.pdf');

If you want to save pdf to server:

    return $pdf->save('with-complete-path/document.pdf');

If you want add pdf file as attachment to email:

    return $pdf->embed('document.pdf');

Headers and Footers

If you want to have headers and footers that appear on every page, add them to your <body> tag like this:

<htmlpageheader name="page-header">
    Your Header Content
</htmlpageheader>

<htmlpagefooter name="page-footer">
    Your Footer Content
</htmlpagefooter>

Now you just need to define them with the name attribute in your CSS:

@page {
    header: page-header;
    footer: page-footer;
}

Inside of headers and footers {PAGENO} can be used to display the page number.

Included Fonts

By default you can use all the fonts shipped with mPDF.

Custom Fonts

You can use your own fonts in the generated PDFs. The TTF files have to be located in one folder, e.g. /resources/fonts/. Add this to your configuration file (/config/pdf.php):

    return [
        'custom_font_path' => base_path('/resources/fonts/'), // don't forget the trailing slash!
    ];

And then:

    $fontdata = array(
        'examplefont' => [
            'R' => 'ExampleFont-Regular.ttf',      // regular font
            'B' => 'ExampleFont-Bold.ttf',         // optional: bold font
            'I' => 'ExampleFont-Italic.ttf',       // optional: italic font
            'BI' => 'ExampleFont-Bold-Italic.ttf', // optional: bold-italic font
        ]
        // ...add as many as you want.
    );

    $pdf->addCustomFont($fontdata, true);
    // If your font file is unicode and "OpenType Layout" then set true. Default value is false.

Now you can use the font in CSS:

body {
    font-family: 'examplefont', sans-serif;
}

Set Protection

To set protection, you just call the SetProtection() method and pass an array with permissions, an user password and an owner password.

The passwords are optional.

There are a few permissions: 'copy', 'print', 'modify', 'annot-forms', 'fill-forms', 'extract', 'assemble', 'print-highres'.

use PDF;

function generate_pdf() {
    $data = [
        'foo' => 'bar'
    ];
    $pdf = PDF::make();
    $pdf->SetProtection(['copy', 'print'], 'user_pass', 'owner_pass')
    $pdf->loadView('pdf.document', $data);
    
    return $pdf->stream('document.pdf');
}

Find more information to SetProtection() here: https://mpdf.github.io/reference/mpdf-functions/setprotection.html

Documentation

Visit this link for more options and settings: https://mpdf.github.io/

统计信息

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

GitHub 信息

  • Stars: 7
  • Watchers: 1
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-02-20