Created
August 27, 2011 07:19
-
-
Save samt/1175098 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require __DIR__.'/includes/BarcodeBase.php'; | |
require __DIR__.'/includes/QRCode.php'; | |
require __DIR__.'/includes/DataMatrix.php'; | |
require __DIR__.'/includes/PDF417.php'; | |
require __DIR__.'/includes/Code39.php'; | |
require __DIR__.'/includes/Code128.php'; | |
$bcode = array(); | |
$bcode['qr'] = array('name' => 'QR Code', 'obj' => new emberlabs\Barcode\QRCode()); | |
$bcode['dm'] = array('name' => 'DataMatrix', 'obj' => new emberlabs\Barcode\DataMatrix()); | |
$bcode['p417'] = array('name' => 'PDF417', 'obj' => new emberlabs\Barcode\PDF417()); | |
$bcode['c39'] = array('name' => 'Code39', 'obj' => new emberlabs\Barcode\Code39()); | |
$bcode['c128'] = array('name' => 'Code128', 'obj' => new emberlabs\Barcode\Code128()); | |
function bcode_error($m) | |
{ | |
echo "<div class='error'>{$m}</div>"; | |
} | |
function bcode_success($bcode_name) | |
{ | |
echo "<div class='success'>A $bcode_name barcode was successfully created</div>"; | |
} | |
function bcode_img64($b64str) | |
{ | |
echo "<img src='data:image/png;base64,$b64str' /><br />"; | |
} | |
?> | |
<html> | |
<head> | |
<title>Barcode Tester</title> | |
<style type="text/css"> | |
.error, .success { | |
margin: 20px 0 20px 0; | |
font-weight: bold; | |
padding: 15px; | |
color: #FFF; | |
} | |
.error { | |
background-color: #A00; | |
} | |
.success { | |
background-color: #0A0; | |
} | |
</style> | |
</head> | |
<body> | |
<form action="index.php" method="post"> | |
Enter Data to encode: <input type="text" name="encode" value="<?php echo htmlspecialchars($_POST['encode']); ?>" /><br /> | |
<input type="submit" value="Encode" name="submit" /> | |
</form> | |
<hr /> | |
<?php | |
if (isset($_POST['submit'])) { | |
?> | |
Data to be encoded: <strong><?php echo htmlspecialchars($_POST['encode']); ?></strong><br /> | |
<?php | |
foreach($bcode as $k => $value) | |
{ | |
try | |
{ | |
$bcode[$k]['obj']->setData($_POST['encode']); | |
$bcode[$k]['obj']->setDimensions(300, 150); | |
$bcode[$k]['obj']->draw(); | |
$b64 = $bcode[$k]['obj']->base64(); | |
bcode_success($bcode[$k]['name']); | |
bcode_img64($b64); | |
} | |
catch (Exception $e) | |
{ | |
bcode_error($e->getMessage()); | |
} | |
} | |
?> | |
<?php } ?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://gist.github.com/samt/1175098?permalink_comment_id=4242139#gistcomment-4242139