-
Notifications
You must be signed in to change notification settings - Fork 156
/
Copy pathcanvas-renderer.ts
87 lines (76 loc) · 2.98 KB
/
canvas-renderer.ts
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import { IBarcodeRenderer } from './IRenderer';
import { BaseAttributes } from './canvas-interface';
import { createHtmlElement } from '../utility/dom-util';
/**
* canvas renderer
*/
/** @private */
export class BarcodeCanvasRenderer implements IBarcodeRenderer {
/**
* Get the context value for the canvas.\
*
* @returns {CanvasRenderingContext2D} Get the context value for the canvas .
* @param {HTMLCanvasElement} canvas - Provide the canvas element .
* @private
*/
public static getContext(canvas: HTMLCanvasElement): CanvasRenderingContext2D {
return canvas.getContext('2d');
}
/**
* Draw the root element for the barcode.\
*
* @returns {HTMLElement} Draw the barcode SVG .
* @param {Object} attribute - Provide the canvas element .
* @param {string} backGroundColor - Provide the canvas element .
* @param {number} width - Provide the canvas element .
* @param {number} height - Provide the canvas element .
* @private
*/
// eslint-disable-next-line
public renderRootElement(attribute: Object, backGroundColor: string, width: number, height: number): HTMLElement {
const canvasObj: HTMLCanvasElement = createHtmlElement('canvas', attribute) as HTMLCanvasElement;
const ctx: CanvasRenderingContext2D = canvasObj.getContext('2d');
ctx.fillStyle = backGroundColor;
ctx.fillRect(0, 0, width, height);
return canvasObj;
}
/**
* Draw the rect for the barcode.\
*
* @returns {HTMLElement} Draw the barcode SVG .
* @param {Object} canvas - Provide the canvas element .
* @param {Object} attribute - Provide the canvas element .
* @private
*/
public renderRect(canvas: HTMLCanvasElement, attribute: BaseAttributes): HTMLElement {
const ctx: CanvasRenderingContext2D = canvas.getContext('2d');
if (attribute.imageSource) {
const image: HTMLImageElement = new Image();
image.src = attribute.imageSource;
image.onload = function (): void {
ctx.drawImage(image, attribute.x, attribute.y, attribute.width, attribute.height);
};
}
else {
ctx.fillStyle = attribute.color;
ctx.fillRect(attribute.x, attribute.y, attribute.width, attribute.height);
}
return canvas;
}
/**
* Draw the text for the barcode.\
*
* @returns {HTMLElement} Draw the barcode SVG .
* @param {Object} canvas - Provide the canvas element .
* @param {Object} attribute - Provide the canvas element .
* @private
*/
public renderText(canvas: HTMLCanvasElement, attribute: BaseAttributes): HTMLElement {
const ctx: CanvasRenderingContext2D = canvas.getContext('2d');
ctx.save();
ctx.font = (attribute.stringSize) + 'px ' + attribute.fontStyle;
ctx.fillStyle = attribute.color;
ctx.fillText(attribute.string, attribute.x, attribute.y);
return canvas;
}
}