chuano/fpdf-circle-charts

Library that extends FPDF with circle percentage charts

Maintainers

Package info

github.com/chuano/FPDFCircleCharts

pkg:composer/chuano/fpdf-circle-charts

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.0.1 2016-11-30 09:02 UTC

This package is auto-updated.

Last update: 2026-03-01 00:10:48 UTC


README

Library that extends FPDF with circle percentage charts

screenshot.jpg

Installation

$ composer require chuano/fpdf-circle-charts ~1.0

Usage

$pdf = new FPDFCircleCharts();
$pdf->AddPage();

// Chart width and height
$width = 190;
// Padding inside chart box
$padding = 10;
// Percentage completed
$percentage = 75;
// Draw the chart
$pdf->CircleChart($width, $padding, $percentage);

// Output
$pdf->Output();