mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 01:58:09 +01:00
10 lines
164 B
PHP
Executable File
10 lines
164 B
PHP
Executable File
<?php
|
|
define('FPDF_FONTPATH','font/');
|
|
require('code39.php');
|
|
|
|
$pdf=new PDF_Code39();
|
|
$pdf->AddPage();
|
|
$pdf->Code39(60, 30, 'Code 39');
|
|
$pdf->Output();
|
|
?>
|