PHP code example of altermaker / affichage

1. Go to this page and download the library: Download altermaker/affichage 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/ */

    

altermaker / affichage example snippets




use Altermaker\Affichage\Affichage;

// Déclarer l'emplacement de la police d'écriture Roboto (obligatoire) dans votre code
Affichage::setPathToRoboto('assets/css/Roboto-Medium.ttf');

// Générer un affichage pour le score "B"
$affichage = new Affichage();
$affichage->setScoreLetter('B');
$affichage->printLabel();



Affichage::setPathToRoboto('assets/css/Roboto-Medium.ttf');



// La méthode setScoreLetter() accepte une lettre entre A et E
$affichage->setScoreLetter('A');

// La méthode setScoreIndex() accepte une veleur numérique
$affichage->setScoreIndex(1137);



// Paramétrage au format "Lettre"
$affichage->setFormat('letter');

// Paramétrage au format "Réglette"
$affichage->setFormat('range');

// Paramétrage au format "Incide"
$affichage->setFormat('index');



// La méthode setVariant() accepte les valeurs 'a1', 'a2', 'a3', 'a4' et 'c'
$affichage->setVariant('a1');



// La méthode setLabelHeight() accepte une valeur numérique en px
$affichage->setLabelHeight(180);



// La méthode printLabel() génère le visuel au format HTML
$affichage->printLabel();



$affichage->htmlLabel();



use Altermaker\Affichage\Affichage;

Affichage::setPathToRoboto('assets/css/Roboto-Medium.ttf');

$affichage = new Affichage();
$affichage->setVariant('a1')->setFormat('letter')->setLabelHeight(200)->setScoreLetter('A')->printLabel();