datamatrix_ex1.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php // content="text/plain; charset=utf-8"
require_once('jpgraph/datamatrix/datamatrix.inc.php');
 
$data = '123456';
 
$encoder = DatamatrixFactory::Create();
$backend = DatamatrixBackendFactory::Create($encoder);
$backend->SetModuleWidth(3);
 
// Create the barcode from the given data string and write to output file
try {
    $backend->Stroke($data);
} catch (Exception $e) {
    $errstr = $e->GetMessage();
    echo "Datamatrix error message: $errstr\n";
}
 
?>