PHP code example of andreterceiro / minigraficoimagem

1. Go to this page and download the library: Download andreterceiro/minigraficoimagem library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

andreterceiro / minigraficoimagem example snippets



	re_once("./vendor/andreterceiro/minigraficoimagem/MiniGraficoImagem.php");
	$grafico = new MiniGraficoImagem ;
	$grafico->cadastrar(1,"Banana",255,255,0) ;
	$grafico->cadastrar(3,"Laranja",100,100,50) ;
	$grafico->gerarGrafico();

<img src="imagem-exemplo.php" />


	re_once("./vendor/andreterceiro/minigraficoimagem/MiniGraficoImagem.php");
	$grafico = new MiniGraficoImagem;
	$grafico->setarLinhaReferencia(5);
	$grafico->cadastrar(1,"Linux",255,0,0);
	$grafico->cadastrar(1,"Windows",0,255,0);
	$grafico->cadastrar(1,"Mac OS",0,0,255);
	$grafico->gerarGrafico(255,255,200);