Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 1.27 KB

readme.md

File metadata and controls

40 lines (24 loc) · 1.27 KB

PdfRotate

Build Status Downloads this Month Latest Stable Version License

Rotate PDF documents from PHP.

Donate

Installation

Download a latest package or use Composer:

composer require czproject/pdf-rotate

CzProject\PdfRotate requires PHP 5.3.0 or later.

Usage

use CzProject\PdfRotate\PdfRotate;

$pdf = new PdfRotate;
$sourceFile = '/path/to/source.pdf';
$outputFile = '/path/to/output.pdf';

$pdf->rotatePdf($sourceFile, $outputFile, $pdf::DEGREES_90);

License: New BSD License
Author: Jan Pecha, https://www.janpecha.cz/