chuano/fpdf-circle-charts

FPDF 扩展库,增加了圆形百分比图表功能

1.0.1 2016-11-30 09:02 UTC

This package is auto-updated.

Last update: 2024-09-29 04:14:27 UTC


README

FPDF 扩展库,增加了圆形百分比图表功能

screenshot.jpg

安装

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

使用方法

$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();