生成條形碼

2022-02-18 05:39:44 字數 1487 閱讀 5986

《一》路由

routes.maproute(

name:

"home",

url:

"home/getbar/",

defaults:

new

);

《二》html頁

"text

" value="" id="

codenum

"/>

"button

" value="

生成條形碼

" onclick="

wds_createbar()

"/>

"width: 200px;height: 200px

" id="

wds-bar-div

">

img-div

" />

《三》控制器

public

void

getbar()

}//生成條形碼的方法

private bitmap getcode39(string

strsource)

;strsource =strsource.toupper();

//實作圖片

bitmap objbitmap = new

bitmap(

((widlength * 3 + narrowlength * 7) * (intsourcelength + 2)) + (x * 2

), barcodeheight + (y * 2

)); graphics objgraphics = graphics.fromimage(objbitmap); //

宣告gdi+繪圖介面

//填上底色

objgraphics.fillrectangle(brushes.white, 0, 0

, objbitmap.width, objbitmap.height);

for (int i = 0; i < intsourcelength; i++)

//查表編碼

strencode = string.format("0"

, strencode, code39[alphabet.indexof(strsource[i])]);

}strencode = string.format("

0010010100

", strencode); //

補上結束符號 *

int intencodelength = strencode.length; //

編碼後長度

intintbarwidth;

for (int i = 0; i < intencodelength; i++) //

依碼畫出code39 barcode

return

objbitmap;

}

條形碼生成

生成條形碼的類 public class barcode128dll set private font m valuefont new font 宋體 10 是否顯示可見號碼 如果為null不顯示號碼 public font valuefont set private byte m magnify ...

Asp生成條形碼

function haiwaocde zfstr zf zfstr zf replace zf,0 zf replace zf,1 zf replace zf,2 zf replace zf,3 zf replace zf,4 zf replace zf,5 zf replace zf,7 zf r...

PHP生成條形碼

1.什麼是條形碼?列印出來的優惠券,商家需要用驗證器讀取條形碼,來獲得其有效性。2.如何生成條形碼?2.1檔案結構 2.2具體解析 1 class資料夾是已封裝好生成條形碼的類,只需要呼叫即可。2 index.php是乙個可選擇條件生成條形碼的功能,是主程式的入口,而html資料夾是提供的被引用的 ...