2017-04-06 86 views
0

我从我的讲师那里得到了这个示例代码。我想修改代码,以便它可以从数据库获取我的数据以生成条形码。我已经阅读了一些文章,但我仍然对生成条形码有所了解。那么我现在应该怎么做?你的帮助真的很感激。如何在php中生成条形码

<?php 
 
// Including all required classes 
 
require_once('class/BCGFontFile.php'); 
 
require_once('class/BCGColor.php'); 
 
require_once('class/BCGDrawing.php'); 
 

 
// Including the barcode technology 
 
require_once('class/BCGcode39.barcode.php'); 
 

 
// Loading Font 
 
$font = new BCGFontFile('./font/Arial.ttf', 18); 
 

 
// Don't forget to sanitize user inputs 
 
$text = isset($_GET['text']) ? $_GET['text'] : '7895565'; 
 

 
// The arguments are R, G, B for color. 
 
$color_black = new BCGColor(0, 0, 0); 
 
$color_white = new BCGColor(255, 255, 255); 
 

 
$drawException = null; 
 
try { 
 
    $code = new BCGcode39(); 
 
    $code->setScale(2); // Resolution 
 
    $code->setThickness(30); // Thickness 
 
    $code->setForegroundColor($color_black); // Color of bars 
 
    $code->setBackgroundColor($color_white); // Color of spaces 
 
    $code->setFont($font); // Font (or 0) 
 
    $code->parse($text); // Text 
 
} catch(Exception $exception) { 
 
    $drawException = $exception; 
 
} 
 

 
/* Here is the list of the arguments 
 
1 - Filename (empty : display on screen) 
 
2 - Background color */ 
 
$drawing = new BCGDrawing('', $color_white); 
 
if($drawException) { 
 
    $drawing->drawException($drawException); 
 
} else { 
 
    $drawing->setBarcode($code); 
 
    $drawing->draw(); 
 
} 
 

 
// Header that says it is an image (remove it if you save the barcode to a file) 
 
header('Content-Type: image/png'); 
 
header('Content-Disposition: inline; filename="barcode.png"'); 
 

 
// Draw (or save) the image into PNG format. 
 
$drawing->finish(BCGDrawing::IMG_FORMAT_PNG); 
 
?>

+0

所以你不知道如何使用'mysqli'或'PDO'? – Justinas

+0

@Justinas我知道如何使用mysqli,但我的问题是我不知道上面我应该修改的源代码中的哪个部分。 – user9791

回答

0

您的条形码是由该代码生成:$code->parse($text); // Text

哪里$text$text = isset($_GET['text']) ? $_GET['text'] : '7895565';

因此,所有你需要做的$text = $db->fetch();

+0

我不知道该怎么写'$ db-> fetch();',你有更简单的方法吗? – user9791

+0

@ user9791这是PDO实施示例,将其替换为PDO的实际代码。所以你知道如何使用PDO或不?因为如果不是的话 - 会把问题看得太宽泛。 – Justinas

+0

是这样吗? '$ db \t = mysqli_connect(“localhost”,“root”,“”,“smposf”); \t \t $ as \t \t = mysqli_query($ db,“select * from barcode”); //其中SDATE = ' “$ SDATE。”' \t \t而($ B = mysqli_fetch_array($如)) \t \t { \t \t \t $条形码= $ B [ '条形码']; \t \t \t echo“$ barcode”,'
','
'; \t} – user9791