ホームページ >バックエンド開発 >PHPチュートリアル >php_PHP チュートリアルでバーコード コードを生成する
phpはバーコードコードを生成します バーコードを作成するには、画像を生成する必要があります。PHP で画像を生成するには、gd ライブラリを使用する必要があります。そのため、php.ini ファイルを見つけて、extension=php_gd2.dll を見つけて、前のファイルを削除する必要があります。 ; 。いくつかの例を使用できます。
バーコードコードを生成するためのphpチュートリアル
/*
バーコードを生成するには、画像を生成する必要があります。PHP で画像を生成するには、gd ライブラリを使用する必要があります。そのため、php.ini ファイルを見つけて、extension=php_gd2.dll を見つけて、以前のファイルを削除する必要があります。
。いくつかの例を使用できます。
*/
クラスcd_barra
{
var $file;
var $into;
var $cd_barras = array(0=>"00110",1=>"10001",2=>"01001",3=>"11000",4=>"00101",
5=>"10100"、6=>"01100"、7=>"00011"、8=>"10010"、9=>"01010"
);
関数 cd_barra($value,$files,$into=1) {
$下 = 1 ; $hight = 55;
$this->into = $into;
for($count1=9;$count1>=0;$count1--){
for($count2=9;$count2>=0;$count2--){
$count = ($count1 * 10) + $count2 ;
$text = "" ;
for($i=1;$i $text .= substr($this->cd_barras[$count1],($i-1),1) . substr($this->cd_barras[$count2],($i-1),1);
}
$this->cd_barras[$count] = $text;
}
}
//$img = imagecreate($ lower*95+300,$hight+30);
$img = imagecreate(145,55);
//$img = imagecreate(395,73);
$cl_black = imagecolorallocate($img, 0, 0, 0);
$cl_white = imagecolorallocate($img, 255, 255, 255);
imagefilledrectangle($img, 0, 0, $ lower*95+1000, $hight+30, $cl_white);
imagefilledrectangle($img, 1,1,1,53,$cl_black);
imagefilledrectangle($img, 2,1,2,53,$cl_white);
imagefilledrectangle($img, 3,1,3,53,$cl_black);
imagefilledrectangle($img, 4,1,4,53,$cl_white);
$thin = 1 ;
if(substr_count(strtoupper($_server['server_software']),"win32")){
//o タマンホ パラ Windows テム ケ サー 3
// Windows の場合、ワイドバーは = 3
$wide = 3;
} その他 {
$wide = 2.72;
}
$pos = 5 ;
$text = $value ;
if((strlen($text) % 2) <> 0){
$text = "0" 。 $テキスト;
}
while (strlen($text) > 0) {
$i =round($this->barra_left($text,2));
$text = $this->barra_right($text,strlen($text)-2);
$f = $this->cd_barras[$i];
for($i=1;$i if (substr($f,($i-1),1) == "0") {
$f1 = $thin ;
}その他{
$f1 = $wide ;
}
imagefilledrectangle($img, $pos,1,$pos-1+$f1,53,$cl_black) ;
$pos = $pos + $f1 ;
if (substr($f,$i,1) == "0") {
$f2 = $thin ;
}その他{
$f2 = $wide ;
}
imagefilledrectangle($img, $pos,1,$pos-1+$f2,53,$cl_white) ;
$pos = $pos + $f2 ;
}
}
imagefilledrectangle($img, $pos,1,$pos-1+$wide,53,$cl_black);
$pos=$pos+$wide;
imagefilledrectangle($img, $pos,1,$pos-1+$thin,53,$cl_white);
$pos=$pos+$thin;
imagefilledrectangle($img, $pos,1,$pos-1+$thin,53,$cl_black);
$pos=$pos+$thin;
$this->put_img($img,$files);
}
関数 barra_left($input,$comp){
戻りsubstr($input,0,$comp);
}
関数 barra_right($input,$comp){
return substr($input,strlen($input)-$comp,$comp);
}
関数 put_img($image,$file){
if($this->into){
imagegif($image,$file);
}
他に{
header("コンテンツタイプ: 画像/gif");
imagegif($image);
}
imagedestroy($image);
}
}?>
//调用方法
include("codes.php");
$new_code = 新しい cd_barra("1234567890","a.gif",1);
?>