Difference between #215 and #216 of
Yii v2 snippet guide

Revision #216 has been created by rackycz on Aug 5, 2020, 9:35:24 AM with the memo:

FPDF
« previous (#215) next (#217) »

Changes

Title unchanged

Yii v2 snippet guide

Category unchanged

Tutorials

Yii version unchanged

2.0

Tags unchanged

tutorial,beginner,yii2

Content changed

[...]
**PDF**
---
For creating PDFs I use [FPDF](http://www.fpdf.org) library. It it extremely simple to make it run. Just download it and then use it as a helper - I described how this is done [above](https://www.yiiframework.com/wiki/2552/yii-v2-snippet-guide#creating-your-new-helper-class).

You will only need **FPDF.php** and folder **font**. Then in your controller just do this:

 
```php
use myHelpers\FPDF;
// ...
$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont('Arial','B',16);
[...]
7 0
4 followers
Viewed: 254 825 times
Version: 2.0
Category: Tutorials
Written by: rackycz
Last updated by: rackycz
Created on: Sep 19, 2019
Last updated: 5 months ago
Update Article

Revisions

View all history