Tag Archives: php生成条形码

php 生成条形码函数 imagepng()

function EAN_13($code, $distinate) { //一个单元的宽度 $lw = 2; //条码高 $hi = 100; // the guide code is no coding,is used to show the left part coding type// // Array guide is used to record the EAN_13 is left part coding type// $Guide = array(1=>’AAAAAA’,’AABABB’,’AABBAB’,’ABAABB’,’ABBAAB’,’ABBBAA’,’ABABAB’,’ABABBA’,’ABBABA’); $Lstart =’101′; $Lencode = array(“A” => array(’0001101′,’0011001′,’0010011′,’0111101′,’0100011′,’0110001′,’0101111′,’0111011′,’0110111′,’0001011′), “B” => array(’0100111′,’0110011′,’0011011′,’0100001′,’0011101′,’0111001′,’0000101′,’0010001′,’0001001′,’0010111′)); $Rencode [...]