时间:2021-07-01 10:21:17 帮助过:12人阅读
// echo $Guide[$code[0]];
$barcode = $Lstart;
for($i=1;$i<=6;$i++)
{
$barcode .= $Lencode [$Guide[$code[0]][($i-1)]] [$code[$i]];
}
$barcode .= $center;
for($i=7;$i<13;$i++)
{
$barcode .= $Rencode[$code[($i)]] ;
}
$barcode .= $ends;
$img = ImageCreate($lw*95+60,$hi+30);
$fg = ImageColorAllocate($img, 0, 0, 0);
$bg = ImageColorAllocate($img, 255, 255, 255);
ImageFilledRectangle($img, 0, 0, $lw*95+60, $hi+30, $bg);
$shift=10;
for ($x=0;$x
{
$sh=10;
} else {
$sh=0;
}
if ($barcode[$x] == '1')
{
$color = $fg;
} else {
$color = $bg;
}
ImageFilledRectangle($img, ($x*$lw)+30,5,($x+1)*$lw+29,$hi+5+$sh,$color);
}
/* Add the Human Readable Label */
ImageString($img,5,20,$hi+5,$code[0],$fg);
for ($x=0;$x<6;$x++) {
ImageString($img,5,$lw*(8+$x*6)+30,$hi+5,$code[$x+1],$fg);
ImageString($img,5,$lw*(53+$x*6)+30,$hi+5,$code[$x+7],$fg);
}
// ImageString($img,4,$lw*95+17,$hi-5,$code[12],$fg);
/* Output the Header and Content. */
header("Content-Type: image/png");
ImagePNG($img);
}
EAN_13('6901028055048');
?>