|
<OL><LI><CODE><FONT face=新宋体><?php </FONT></CODE><LI><LI><CODE><FONT face=新宋体>function UPCAbarcode($code) { </FONT></CODE><LI><CODE><FONT face=新宋体> $lw = 2; $hi = 100; </FONT></CODE><LI><CODE><FONT face=新宋体> $Lencode = array('0001101','0011001','0010011','0111101','0100011', </FONT></CODE><LI><CODE><FONT face=新宋体> '0110001','0101111','0111011','0110111','0001011'); </FONT></CODE><LI><CODE><FONT face=新宋体> $Rencode = array('1110010','1100110','1101100','1000010','1011100', </FONT></CODE><LI><CODE><FONT face=新宋体> '1001110','1010000','1000100','1001000','1110100'); </FONT></CODE><LI><CODE><FONT face=新宋体> $ends = '101'; $center = '01010'; </FONT></CODE><LI><CODE><FONT face=新宋体> /* UPC-A Must be 11 digits, we compute the checksum. */ </FONT></CODE><LI><CODE><FONT face=新宋体> if ( <A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($code) != 11 ) { die("UPC-A Must be 11 digits."); } </FONT></CODE><LI><CODE><FONT face=新宋体> /* Compute the EAN-13 Checksum digit */ </FONT></CODE><LI><CODE><FONT face=新宋体> $ncode = '0'.$code; </FONT></CODE><LI><CODE><FONT face=新宋体> $even = 0; $odd = 0; </FONT></CODE><LI><CODE><FONT face=新宋体> for ($x=0;$x<12;$x++) { </FONT></CODE><LI><CODE><FONT face=新宋体> if ($x % 2) { $odd += $ncode[$x]; } else { $even += $ncode[$x]; } </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> $code.=(10 - (($odd * 3 + $even) % 10)) % 10; </FONT></CODE><LI><CODE><FONT face=新宋体> /* Create the bar encoding using a binary string */ </FONT></CODE><LI><CODE><FONT face=新宋体> $bars=$ends; </FONT></CODE><LI><CODE><FONT face=新宋体> $bars.=$Lencode[$code[0]]; </FONT></CODE><LI><CODE><FONT face=新宋体> for($x=1;$x<6;$x++) { </FONT></CODE><LI><CODE><FONT face=新宋体> $bars.=$Lencode[$code[$x]]; </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> $bars.=$center; </FONT></CODE><LI><CODE><FONT face=新宋体> for($x=6;$x<12;$x++) { </FONT></CODE><LI><CODE><FONT face=新宋体> $bars.=$Rencode[$code[$x]]; </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> $bars.=$ends; </FONT></CODE><LI><CODE><FONT face=新宋体> /* Generate the Barcode Image */ </FONT></CODE><LI><CODE><FONT face=新宋体> $img = <A href="http://www.php.net/manual/zh/function.ImageCreate"><U><FONT color=#0000ff>ImageCreate</FONT></U></A>($lw*95+30,$hi+30); </FONT></CODE><LI><CODE><FONT face=新宋体> $fg = <A href="http://www.php.net/manual/zh/function.ImageColorAllocate"><U><FONT color=#0000ff>ImageColorAllocate</FONT></U></A>($img, 0, 0, 0); </FONT></CODE><LI><CODE><FONT face=新宋体> $bg = <A href="http://www.php.net/manual/zh/function.ImageColorAllocate"><U><FONT color=#0000ff>ImageColorAllocate</FONT></U></A>($img, 255, 255, 255); </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageFilledRectangle"><U><FONT color=#0000ff>ImageFilledRectangle</FONT></U></A>($img, 0, 0, $lw*95+30, $hi+30, $bg); </FONT></CODE><LI><CODE><FONT face=新宋体> $shift=10; </FONT></CODE><LI><CODE><FONT face=新宋体> for ($x=0;$x<<A href="http://www.php.net/manual/zh/function.strlen"><U><FONT color=#0000ff>strlen</FONT></U></A>($bars);$x++) { </FONT></CODE><LI><CODE><FONT face=新宋体> if (($x<10) || ($x>=45 && $x<50) || ($x >=85)) { $sh=10; } else { $sh=0; } </FONT></CODE><LI><CODE><FONT face=新宋体> if ($bars[$x] == '1') { $color = $fg; } else { $color = $bg; } </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageFilledRectangle"><U><FONT color=#0000ff>ImageFilledRectangle</FONT></U></A>($img, ($x*$lw)+15,5,($x+1)*$lw+14,$hi+5+$sh,$color); </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> /* Add the Human Readable Label */ </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageString"><U><FONT color=#0000ff>ImageString</FONT></U></A>($img,4,5,$hi-5,$code[0],$fg); </FONT></CODE><LI><CODE><FONT face=新宋体> for ($x=0;$x<5;$x++) { </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageString"><U><FONT color=#0000ff>ImageString</FONT></U></A>($img,5,$lw*(13+$x*6)+15,$hi+5,$code[$x+1],$fg); </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageString"><U><FONT color=#0000ff>ImageString</FONT></U></A>($img,5,$lw*(53+$x*6)+15,$hi+5,$code[$x+6],$fg); </FONT></CODE><LI><CODE><FONT face=新宋体> } </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImageString"><U><FONT color=#0000ff>ImageString</FONT></U></A>($img,4,$lw*95+17,$hi-5,$code[11],$fg); </FONT></CODE><LI><CODE><FONT face=新宋体> /* Output the Header and Content. */ </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.header"><U><FONT color=#0000ff>header</FONT></U></A>("Content-Type: image/png"); </FONT></CODE><LI><CODE><FONT face=新宋体> <A href="http://www.php.net/manual/zh/function.ImagePNG"><U><FONT color=#0000ff>ImagePNG</FONT></U></A>($img); </FONT></CODE><LI><CODE><FONT face=新宋体>} </FONT></CODE><LI><LI><CODE><FONT face=新宋体>UPCAbarcode('12345678901'); </FONT></CODE><LI><LI><CODE><FONT face=新宋体>?></FONT></CODE></LI></OL> |
|