แนะนำ jquery barcode plugin สำหรับสร้างบาร์โค๊ด

ไม่มีความคิดเห็น

จากบทความ Barcode คืออะไร?
วันนี้ผมจะมาแนะนำ jQuery Barcode Plugin เอาไว้สร้าง Barcode เพื่อใช้งานกันครับ ซึ่งสามารถรองรับชนิดของ Barcode ได้หลายแบบ เช่น ean8, ean13, code11, code39, code128, codabar 

การใช้งานก็ไม่ยากครับเพียงแค่เรา include ไฟล์ jquery-barcode.js ก็สามารถเรียกใช้งาน jQuery Barcode Plugin เพื่อสร้างบาร์โค๊ดได้แล้ว

ดาวน์โหลด

  1. <script type="text/javascript" src="jquery-1.3.2.min.js"></script>    
  2. <script type="text/javascript" src="jquery-barcode.js"></script>  

การเรียกใช้งาน

  1. <div id="bcTarget"></div>   

  1. $("#bcTarget").barcode("1234567890128""ean13");

Prototype of the barcode function

  1. barcode: function(datas, type, settings)  

datas

string

Value barcode (dependent on the type of barcode)
If barcode type include it, the presence of the checksum is not mandatory, it ise automatically recalculated
object
type : ean8, ean13, code11, code39, code128, codabar
memberType
codestring
type : std25, int25, code93
memberType
codestring
crcboolean
type : msi
memberType
codestring
crcboolean
objectcrc1 : string("mod10", "mod11")
crc2 : string("mod10", "mod11")
type : datamatrix
memberType
codestring
rectboolean (default : false)

type (string)

  • codabar
  • code11 (code 11)
  • code39 (code 39)
  • code93 (code 93)
  • code128 (code 128)
  • ean8 (ean 8)
  • ean13 (ean 13)
  • std25 (standard 2 of 5 - industrial 2 of 5)
  • int25 (interleaved 2 of 5)
  • msi
  • datamatrix (ASCII + extended)

settings (object)

visual configuration of the barcode
ParameterTypeDefault valueDetailLimitation
barWidthint1width of a bar1D
barHeightint50container height1D
moduleSizeint5largeur / hauteur d'un module2D
showHRIbooltruedisplay text (HRI : Human readable Interpretation)
bgColortext#FFFFFFbackground color
colortext#000000barcode color
fontSizeint10font size of the HRI
outputtextcssoutput type : css, svg, bmp, canvas
renderer : canvas
ParameterTypeDefault valueDetail
posXint0X origine
posYint0Y origine


อ้างอิง : http://www.gu-soft.com/site/article/barcode-jquery-plugin.html

ไม่มีความคิดเห็น :