Blame view

site/jpgraph/src/Examples/datamatrix_ex1.php 426 Bytes
d72ac078   Guillaume   Ajout graphe V1.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  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";
  }
  
  ?>