일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- rowspan
- WebLogic
- oracle
- phonegap
- iBATIS
- 전자정부프레임워크
- MFC
- Struts
- PHP
- JDOM
- swingx
- JSON
- Google Map
- dock
- Eclipse
- Android
- 가우스
- tomcat
- PLSQL
- Ajax
- 선택적조인
- sencha touch
- jsr 296
- ibsheet
- MySQL
- appspresso
- jQuery
- Spring
- node.js
- GPS
Archives
- Today
- Total
Where The Streets Have No Name
js로 바코드 만들기 본문
/*
Create by nhosw at i-swear.com
2007. 05. 08 어버이날을 맞이하여..
이 주석은 지우지 말아주시길 바랍니다.
ps. 사용중 더 좋은 방법이나 버그가 있을 경우 메일로 부탁드립니다.
소스를 오픈한다는것은 더 좋은 소스로 고치기 위함이 아닐까요......
감사합니다.
사용법
바코드를 그릴 페이지에 아래의 스타일 시트를 선언해주셔야 합니다.
<style type="text/css">
.space { background:#FFFFFF;float:left;margin:0;padding:0;cursor:default; }
.bar { background:#000000;float:left;margin:0;padding:0;cursor:default; }
.bartext { clear:both;font-family:Fixedsys,Arial;font-size:12px;cursor:default; }
</style>
바코드를 그릴 라인에서 아래와 같이 써줍니다.
<script type="text/javascript">barcode("1234567890", 40);</script>
<script type="text/javascript">barcode("i-swear.com", 40);</script>
*/
var s;
var b;
var b_;
var s_;
var bar_ar = new Array();
bar_ar["0"] = "1010011011010";
bar_ar["1"] = "1101001010110";
bar_ar["2"] = "1011001010110";
bar_ar["3"] = "1101100101010";
bar_ar["4"] = "1010011010110";
bar_ar["5"] = "1101001101010";
bar_ar["6"] = "1011001101010";
bar_ar["7"] = "1010010110110";
bar_ar["8"] = "1101001011010";
bar_ar["9"] = "1011001011010";
bar_ar["A"] = "1101010010110";
bar_ar["B"] = "1011010010110";
bar_ar["C"] = "1101101001010";
bar_ar["D"] = "1010110010110";
bar_ar["E"] = "1101011001010";
bar_ar["F"] = "1011011001010";
bar_ar["G"] = "1010100110110";
bar_ar["H"] = "1101010011010";
bar_ar["I"] = "1011010011010";
bar_ar["J"] = "1010110011010";
bar_ar["K"] = "1101010100110";
bar_ar["L"] = "1011010100110";
bar_ar["M"] = "1101101010010";
bar_ar["N"] = "1010110100110";
bar_ar["O"] = "1101011010010";
bar_ar["P"] = "1011011010010";
bar_ar["Q"] = "1010101100110";
bar_ar["R"] = "1101010110010";
bar_ar["S"] = "1011010110010";
bar_ar["T"] = "1010110110010";
bar_ar["U"] = "1100101010110";
bar_ar["V"] = "1001101010110";
bar_ar["W"] = "1100110101010";
bar_ar["X"] = "1001011010110";
bar_ar["Y"] = "1100101101010";
bar_ar["Z"] = "1001101101010";
bar_ar["*"] = "1001011011010";
bar_ar["-"] = "1001010110110";
bar_ar["."] = "1100101011010";
bar_ar[" "] = "1001101011010";
bar_ar["$"] = "1001001001010";
bar_ar["/"] = "1001001010010";
bar_ar["+"] = "1001010010010";
bar_ar["%"] = "1010010010010";
function barcode(str,height, barwidth, doublebarwidth, spacewidth, doublespacewidth, bgcolor,fontcolor) {
if (barwidth && !spacewidth) spacewidth = barwidth;
if (doublebarwidth && !doublespacewidth) doublespacewidth = doublebarwidth;
if (!barwidth) barwidth = 1;
if (!doublebarwidth) doublebarwidth = 2;
if (!spacewidth) spacewidth = 1;
if (!doublespacewidth) doublespacewidth = 2;
if (!height) height = 100;
if (!bgcolor) bgcolor = "#000000";
else bgcolor = "#"+bgcolor;
// s = space , b = bar
var data = "";
var text_width = 0;
if (barwidth == 0) return;
if (!str) return;
str = "*"+str+"*";
var strlen = str.length;
var txtchar = null;
s = "<div class='space' style='width:"+spacewidth+"px;height:"+height+"px'></div>";
s_ = "<div class='space' style='width:"+doublespacewidth+"px;height:"+height+"px'></div>";
b = "<div class='bar' style='width:"+barwidth+"px;height:"+height+"px;background:"+bgcolor+"'></div>";
b_ = "<div class='bar' style='width:"+doublebarwidth+"px;height:"+height+"px;background:"+bgcolor+"'></div>";
data = "<div style='position:absolute;'>";
for (var i=0; i<strlen; i++) {
txtchar = str.substring(i,i+1).toUpperCase();
data += bar_fun(txtchar);
// space 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/0/g);
text_width += tmp.length * spacewidth;
// Bar 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/1/g);
text_width += tmp.length * barwidth;
// doublebar 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/2/g);
text_width += tmp.length * doublebarwidth;
// doublespace 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/3/g);
text_width += tmp.length * doublespacewidth;
}
text_width -= 5;
data += "<div class='bartext'style='width:"+text_width+"px;text-align:justify;text-justify:distribute-all-lines;font-size:11px;color:#"+fontcolor+"'>"+str.toUpperCase()+"</div>";
data += "</div>";
document.writeln(data);
}
function bar_fun(str) {
var data = "";
var prev_tmp = "";
bar_ar[str] = bar_ar[str].replace(/[0]{2}/g, "3"); // 3 넓은 화이트 스페이스
bar_ar[str] = bar_ar[str].replace(/[1]{2}/g, "2"); // 2 넓은 바
for (var i=0; i<bar_ar[str].length; i++) {
tmp = bar_ar[str].substring(i,i+1);
if (tmp == "0") data += s;
else if (tmp == "1") data += b;
else if (tmp == "2") data += b_;
else data += s_;
}
// for
return data;
}
출처 : phpschool.com
Create by nhosw at i-swear.com
2007. 05. 08 어버이날을 맞이하여..
이 주석은 지우지 말아주시길 바랍니다.
ps. 사용중 더 좋은 방법이나 버그가 있을 경우 메일로 부탁드립니다.
소스를 오픈한다는것은 더 좋은 소스로 고치기 위함이 아닐까요......
감사합니다.
사용법
바코드를 그릴 페이지에 아래의 스타일 시트를 선언해주셔야 합니다.
<style type="text/css">
.space { background:#FFFFFF;float:left;margin:0;padding:0;cursor:default; }
.bar { background:#000000;float:left;margin:0;padding:0;cursor:default; }
.bartext { clear:both;font-family:Fixedsys,Arial;font-size:12px;cursor:default; }
</style>
바코드를 그릴 라인에서 아래와 같이 써줍니다.
<script type="text/javascript">barcode("1234567890", 40);</script>
<script type="text/javascript">barcode("i-swear.com", 40);</script>
*/
var s;
var b;
var b_;
var s_;
var bar_ar = new Array();
bar_ar["0"] = "1010011011010";
bar_ar["1"] = "1101001010110";
bar_ar["2"] = "1011001010110";
bar_ar["3"] = "1101100101010";
bar_ar["4"] = "1010011010110";
bar_ar["5"] = "1101001101010";
bar_ar["6"] = "1011001101010";
bar_ar["7"] = "1010010110110";
bar_ar["8"] = "1101001011010";
bar_ar["9"] = "1011001011010";
bar_ar["A"] = "1101010010110";
bar_ar["B"] = "1011010010110";
bar_ar["C"] = "1101101001010";
bar_ar["D"] = "1010110010110";
bar_ar["E"] = "1101011001010";
bar_ar["F"] = "1011011001010";
bar_ar["G"] = "1010100110110";
bar_ar["H"] = "1101010011010";
bar_ar["I"] = "1011010011010";
bar_ar["J"] = "1010110011010";
bar_ar["K"] = "1101010100110";
bar_ar["L"] = "1011010100110";
bar_ar["M"] = "1101101010010";
bar_ar["N"] = "1010110100110";
bar_ar["O"] = "1101011010010";
bar_ar["P"] = "1011011010010";
bar_ar["Q"] = "1010101100110";
bar_ar["R"] = "1101010110010";
bar_ar["S"] = "1011010110010";
bar_ar["T"] = "1010110110010";
bar_ar["U"] = "1100101010110";
bar_ar["V"] = "1001101010110";
bar_ar["W"] = "1100110101010";
bar_ar["X"] = "1001011010110";
bar_ar["Y"] = "1100101101010";
bar_ar["Z"] = "1001101101010";
bar_ar["*"] = "1001011011010";
bar_ar["-"] = "1001010110110";
bar_ar["."] = "1100101011010";
bar_ar[" "] = "1001101011010";
bar_ar["$"] = "1001001001010";
bar_ar["/"] = "1001001010010";
bar_ar["+"] = "1001010010010";
bar_ar["%"] = "1010010010010";
function barcode(str,height, barwidth, doublebarwidth, spacewidth, doublespacewidth, bgcolor,fontcolor) {
if (barwidth && !spacewidth) spacewidth = barwidth;
if (doublebarwidth && !doublespacewidth) doublespacewidth = doublebarwidth;
if (!barwidth) barwidth = 1;
if (!doublebarwidth) doublebarwidth = 2;
if (!spacewidth) spacewidth = 1;
if (!doublespacewidth) doublespacewidth = 2;
if (!height) height = 100;
if (!bgcolor) bgcolor = "#000000";
else bgcolor = "#"+bgcolor;
// s = space , b = bar
var data = "";
var text_width = 0;
if (barwidth == 0) return;
if (!str) return;
str = "*"+str+"*";
var strlen = str.length;
var txtchar = null;
s = "<div class='space' style='width:"+spacewidth+"px;height:"+height+"px'></div>";
s_ = "<div class='space' style='width:"+doublespacewidth+"px;height:"+height+"px'></div>";
b = "<div class='bar' style='width:"+barwidth+"px;height:"+height+"px;background:"+bgcolor+"'></div>";
b_ = "<div class='bar' style='width:"+doublebarwidth+"px;height:"+height+"px;background:"+bgcolor+"'></div>";
data = "<div style='position:absolute;'>";
for (var i=0; i<strlen; i++) {
txtchar = str.substring(i,i+1).toUpperCase();
data += bar_fun(txtchar);
// space 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/0/g);
text_width += tmp.length * spacewidth;
// Bar 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/1/g);
text_width += tmp.length * barwidth;
// doublebar 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/2/g);
text_width += tmp.length * doublebarwidth;
// doublespace 몇개인지 찾는다.
tmp = bar_ar[txtchar].match(/3/g);
text_width += tmp.length * doublespacewidth;
}
text_width -= 5;
data += "<div class='bartext'style='width:"+text_width+"px;text-align:justify;text-justify:distribute-all-lines;font-size:11px;color:#"+fontcolor+"'>"+str.toUpperCase()+"</div>";
data += "</div>";
document.writeln(data);
}
function bar_fun(str) {
var data = "";
var prev_tmp = "";
bar_ar[str] = bar_ar[str].replace(/[0]{2}/g, "3"); // 3 넓은 화이트 스페이스
bar_ar[str] = bar_ar[str].replace(/[1]{2}/g, "2"); // 2 넓은 바
for (var i=0; i<bar_ar[str].length; i++) {
tmp = bar_ar[str].substring(i,i+1);
if (tmp == "0") data += s;
else if (tmp == "1") data += b;
else if (tmp == "2") data += b_;
else data += s_;
}
// for
return data;
}
출처 : phpschool.com