PHP code example of xxggabriel / certificate

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

    

xxggabriel / certificate example snippets


 
r("Content-Type: image/jpeg");
use Certificate\App;

$cert = new App('img/background.jpg');

$cert->createImage([
        ['Certificado', 32, 330, 150,"#333", "/fonts/Bevan/Bevan-Regular.ttf", 0],
        // ['Texto', tamanho da fonte, posição X, posição Y, 
        // Cor da font em hexadecimal, arquivo da font, Angulo do texto],
    ]);
    
$cert->QRCode('https://github.com/xxggabriel', 150, 650, 450);
// $cert->QRCode( Informação para o QR code(como link, codigo ou texto), 
// Tamanho em pixel, Posição X, Posição Y);

$cert->run();

$cert->run(__DIR__);