MaxiCode - Demonstration

Encode this text

* For this demo, no more than 200 characters allowed
Configurations
  • Mode
  • Foreground Color
  • Background Color
Code Result
<?php
require_once('BCGColor.php');
require_once('BCGDrawing.php');
require_once('BCGmaxicode.barcode2d.php');
 
$colorfg = new BCGColor(0, 0, 0);
$colorbg = new BCGColor(255, 255, 255);
 
// Barcode part Part
$code = new BCGmaxicode();
$code->setMode(4);
$code->setColor($colorfg, $colorbg);
$code->parse('MaxiCode');
 
// Drawing Part
$drawing = new BCGDrawing('', $colorbg);
$drawing->setBarcode($code);
$drawing->draw();
 
header('Content-Type: image/png');
 
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG);
?>