knut7/php-graphic

This is a package to create dynamic graphics in php. Simple and easy to use.

v0.2 2018-05-08 18:15 UTC

This package is auto-updated.

Last update: 2024-04-05 18:24:14 UTC


README

This is a package to create dynamic graphics in php. Simple and easy to use.

<?php

  $graph = new \K7Graphic\Base\K7Graphic([1, 10, 20, 40, 60, 80, 100, 100, 56,34,12,98,5,43, 200, 54, 238, 76,23,98,54,65,78,160, 1, 10, 20, 40, 60, 80, 100, 100,]);
  $graph->create('graphicBar.jpg', 1000, 600)->addValue('bar');
  $graph->create('graphicLine.jpg', 1000, 600)->addValue('line');

  ?>

Methods string int int create($imageName, $width, $height )

Methods string (bar or line) addValue($type )