Geometric drawing and transformation primitives for PDF content streams.
💖 Part of the tc-lib-pdf / TCPDF ecosystem (100M+ installs). Sponsor its maintenance →
tc-lib-pdf-graph generates the content stream commands for the graphic and geometric primitives of a PDF document.
| Namespace | \Com\Tecnick\Pdf\Graph |
| Author | Nicola Asuni info@tecnick.com |
| License | GNU LGPL v3 - see LICENSE |
| API docs | https://tcpdf.org/docs/srcdoc/tc-lib-pdf-graph |
| Packagist | https://packagist.org/packages/tecnickcom/tc-lib-pdf-graph |
- Points, lines, rectangles and Bezier curves
- Ellipses, circles, elliptical arcs and pie sectors
- Polygons, regular polygons, star polygons and rounded rectangles
- Arrows, crop marks and registration marks
- Style stack with line width, cap, join, miter limit, dash pattern and colors
- Path-painting and clipping operators
- Transparency, blend modes and overprint through ExtGState objects
- PDF/A mode that suppresses the ExtGState and shading output
- Axial and radial shadings with multiple color stops and per-stop opacity
- Coons patch meshes and color registration bars
- Scaling, rotation, mirroring, reflection, translation and skewing
- Transformation matrix product and transformation stack
- PHP 8.2 or later
- Extension:
zlib - Composer
composer require tecnickcom/tc-lib-pdf-graph<?php
require_once __DIR__ . '/vendor/autoload.php';
$draw = new \Com\Tecnick\Pdf\Graph\Draw(
1.0,
210,
297,
new \Com\Tecnick\Color\Pdf(),
new \Com\Tecnick\Pdf\Encrypt\Encrypt(),
false
);
echo $draw->getClippingRect(10, 10, 50, 20);make deps
make help
make qamake rpm
make debFor system packages, bootstrap with:
require_once '/usr/share/php/Com/Tecnick/Pdf/Graph/autoload.php';Contributions are welcome. Please review CONTRIBUTING.md, CODE_OF_CONDUCT.md, and SECURITY.md.