123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- const barcodes = require('./barcodes/index.js')['default'];
- let barcode = {};
- (function () {
-
- barcode = function (cont, ctxid, options, ctxsize, result) {
- let ops = {}, newOptions, encodings, globaContext, ctx, globaCtxid, cbCanvasSize, cbResult;
- globaCtxid = ctxid
- cbCanvasSize = ctxsize
- cbResult = result
- newOptions = Object.assign(ops, options);
-
- fixMargin(newOptions)
-
- if (newOptions.text == '' || cont == '') {
- return false
- }
-
- globaContext = cont
- ctx = uni.createCanvasContext(globaCtxid, globaContext)
-
- encodings = new barcodes[newOptions.format.toUpperCase()](newOptions.text, newOptions).encode()
- let fixencodings = fixEncodings(encodings, newOptions)
-
- cbCanvasSize({ width: fixencodings.width, height: fixencodings.height })
-
- setTimeout(() => {
- drawCanvas.render(newOptions, fixencodings)
- }, 50);
-
- let drawCanvas = {
- render(options, encoding) {
- this.prepare(options, encoding)
- encoding.encodings.forEach((v, i) => {
- this.barcode(options, v)
- this.text(options, v)
- this.move(v)
- });
- this.draw(options, encoding)
- },
- barcode(options, encoding) {
- let binary = encoding.data;
- let yFrom;
- if (options.textPosition == "top") {
- yFrom = options.marginTop + options.fontSize + options.textMargin;
- } else {
- yFrom = options.marginTop;
- }
-
- ctx.fillStyle = options.lineColor;
- for (let b = 0; b < binary.length; b++) {
- let x = b * options.width + encoding.barcodePadding;
- let height = options.height
- if (encoding.options) {
- if (encoding.options.height != undefined) {
- height = encoding.options.height
- }
- }
- if (binary[b] === "1") {
- ctx.fillRect(x, yFrom, options.width, height);
- } else if (binary[b]) {
- ctx.fillRect(x, yFrom, options.width, height * binary[b]);
- }
- }
- },
- text(options, encoding) {
- if (options.displayValue) {
- let x, y, align, size;
- if (options.textPosition == "top") {
- y = options.marginTop + options.fontSize;
- } else {
- y = options.height + options.textMargin + options.marginTop + options.fontSize;
- }
- if (encoding.options) {
- if (encoding.options.textAlign != undefined) {
- align = encoding.options.textAlign
- }
- if (encoding.options.fontSize != undefined) {
- size = encoding.options.fontSize
- }
- } else {
- align = options.textAlign
- size = options.fontSize
- }
- ctx.setFontSize(size)
- if (align == "left" || encoding.barcodePadding > 0) {
- x = 0;
- ctx.setTextAlign('left')
- } else if (align == "right") {
- x = encoding.width - 1;
- ctx.setTextAlign('right')
- }
- else {
- x = encoding.width / 2;
- ctx.setTextAlign('center');
- }
- ctx.fillStyle = options.fontColor;
- if (encoding.text != undefined) {
- ctx.fillText(encoding.text, x, y);
- }
- }
- },
- move(encoding) {
- ctx.translate(encoding.width, 0);
- },
- prepare(options, encoding) {
-
- if (options.background) {
- ctx.fillStyle = options.background;
- ctx.fillRect(0, 0, encoding.width, encoding.height);
- }
- ctx.translate(options.marginLeft, 0);
- },
- draw(options, encoding) {
- ctx.draw(false, () => {
- this.toImgs(options, encoding)
- })
- },
- toImgs(options, encoding) {
- setTimeout(() => {
- uni.canvasToTempFilePath({
- width: encoding.width,
- height: encoding.height,
- destWidth: encoding.width,
- destHeight: encoding.height,
- canvasId: globaCtxid,
- fileType: 'png',
- success: function (res) {
- cbResult(res.tempFilePath)
- },
- fail: function (res) {
- cbResult(res)
- },
- complete: function () {
- uni.hideLoading();
- },
- }, globaContext);
- }, options.text.length + 100);
- }
- }
-
- function fixEncodings(encoding, options) {
- let encodingArr = [], width = options.marginLeft + options.marginRight, height;
- if (!Array.isArray(encoding)) {
- encodingArr[0] = JSON.parse(JSON.stringify(encoding))
- } else {
- encodingArr = [...encoding]
- }
- encodingArr.forEach((v, i) => {
-
- let textWidth = ctx.measureText(encodingArr[i].text ? encodingArr[i].text : '').width;
-
- let barcodeWidth = encodingArr[i].data.length * options.width;
-
- let barcodePadding = 0;
- if (options.displayValue && barcodeWidth < textWidth) {
- if (options.textAlign == "center") {
- barcodePadding = Math.floor((textWidth - barcodeWidth) / 2);
- } else if (options.textAlign == "left") {
- barcodePadding = 0;
- } else if (options.textAlign == "right") {
- barcodePadding = Math.floor(textWidth - barcodeWidth);
- }
- }
-
- encodingArr[i].barcodePadding = barcodePadding
- encodingArr[i].width = Math.ceil(Math.max(textWidth, barcodeWidth))
- width += encodingArr[i].width
- if (encodingArr[i].options) {
- if (encodingArr[i].options.height != undefined) {
- encodingArr[i].height = encodingArr[i].options.height + (options.displayValue && (encodingArr[i].text ? encodingArr[i].text : '').length > 0 ? options.fontSize + options.textMargin : 0) + options.marginTop + options.marginBottom;
- } else {
- encodingArr[i].height = height = options.height + (options.displayValue && (encodingArr[i].text ? encodingArr[i].text : '').length > 0 ? options.fontSize + options.textMargin : 0) + options.marginTop + options.marginBottom;
- }
- } else {
- encodingArr[i].height = height = options.height + (options.displayValue && (encodingArr[i].text ? encodingArr[i].text : '').length > 0 ? options.fontSize + options.textMargin : 0) + options.marginTop + options.marginBottom;
- }
- });
- return { encodings: encodingArr, width, height };
- }
-
- function fixMargin(options) {
- options.marginTop = options.marginTop == undefined ? options.margin : options.marginTop;
- options.marginBottom = options.marginBottom == undefined ? options.margin : options.marginBottom;
- options.marginRight = options.marginRight == undefined ? options.margin : options.marginRight;
- options.marginLeft = options.marginLeft == undefined ? options.margin : options.marginLeft;
- }
- };
- })()
- export default barcode
|