123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- const drawRectInRect = (ctx, rect, startXPercent, startYPercent, widthPercent, heightPercent, color = 'black') => {
-
- const startX = rect.x + (startXPercent / 100) * rect.width;
- const startY = rect.y + (startYPercent / 100) * rect.height;
-
- const width = (widthPercent / 100) * rect.width;
- const height = (heightPercent / 100) * rect.height;
- ctx.fillStyle = color;
- ctx.fillRect(startX, startY, width, height);
- return { x:startX, y:startY, width, height };
- };
- const drawTextInRect = (ctx, rect, text, startXPercent, startYPercent, fontSizePercent) => {
-
- const startX = rect.x + (startXPercent / 100) * rect.width;
- const startY = rect.y + (startYPercent / 100) * rect.height;
-
- const fontSize = (fontSizePercent / 100) * rect.height;
- ctx.font = `${fontSize}px sans-serif`;
- ctx.fillText(text, startX, startY);
- };
- const drawLineInRect = (ctx, rect, startXPercent, startYPercent, endXPercent, endYPercent, color = 'black', lineWidth = 1) => {
-
- const startX = rect.x + (startXPercent / 100) * rect.width;
- const startY = rect.y + (startYPercent / 100) * rect.height;
-
- const endX = rect.x + (endXPercent / 100) * rect.width;
- const endY = rect.y + (endYPercent / 100) * rect.height;
-
- ctx.strokeStyle = color;
- ctx.lineWidth = lineWidth;
-
- ctx.beginPath();
- ctx.moveTo(startX, startY);
- ctx.lineTo(endX, endY);
- ctx.stroke();
- };
- const drawPointInRect = (ctx, rect, xPercent, yPercent, color = 'black', radius = 1) => {
-
- const x = rect.x + (xPercent / 100) * rect.width;
- const y = rect.y + (yPercent / 100) * rect.height;
-
- ctx.fillStyle = color;
-
- ctx.beginPath();
- ctx.arc(x, y, radius, 0, Math.PI * 2);
- ctx.fill();
- };
- const drawImageInRect = (ctx, rect, img, imgXPercent, imgYPercent, imgWidthPercent, imgHeightPercent) => {
-
- const imgX = rect.x + (imgXPercent / 100) * rect.width;
- const imgY = rect.y + (imgYPercent / 100) * rect.height;
-
- const imgWidth = (imgWidthPercent / 100) * rect.width;
- const imgHeight = (imgHeightPercent / 100) * rect.height;
-
- ctx.drawImage(img, imgX, imgY, imgWidth, imgHeight);
- };
- const drawBorderImageInRect = (ctx, rect, img, imgXPercent, imgYPercent, imgWidthPercent, imgHeightPercent, borderRadius, borderWidth) => {
-
- const imgX = rect.x + (imgXPercent / 100) * rect.width + borderWidth;
- const imgY = rect.y + (imgYPercent / 100) * rect.height + borderWidth;
-
- const imgWidth = (imgWidthPercent / 100) * rect.width - 2 * borderWidth;
- const imgHeight = (imgHeightPercent / 100) * rect.height - 2 * borderWidth;
-
- ctx.save();
-
- ctx.beginPath();
- ctx.moveTo(imgX + borderRadius, imgY);
- ctx.lineTo(imgX + imgWidth - borderRadius, imgY);
- ctx.arcTo(imgX + imgWidth, imgY, imgX + imgWidth, imgY + borderRadius, borderRadius);
- ctx.lineTo(imgX + imgWidth, imgY + imgHeight - borderRadius);
- ctx.arcTo(imgX + imgWidth, imgY + imgHeight, imgX + imgWidth - borderRadius, imgY + imgHeight, borderRadius);
- ctx.lineTo(imgX + borderRadius, imgY + imgHeight);
- ctx.arcTo(imgX, imgY + imgHeight, imgX, imgY + imgHeight - borderRadius, borderRadius);
- ctx.lineTo(imgX, imgY + borderRadius);
- ctx.arcTo(imgX, imgY, imgX + borderRadius, imgY, borderRadius);
- ctx.closePath();
-
- ctx.strokeStyle = 'white';
- ctx.lineWidth = borderWidth;
- ctx.stroke();
-
-
-
-
- ctx.clip();
-
- ctx.drawImage(img, imgX, imgY, imgWidth, imgHeight);
-
- ctx.restore();
- };
- const drawHorizontalTextList = (ctx, rect,color='white', texts, fontSizePercent, startXPercent = 0, startYPercent = 50, columnSpacingPercent = 0, columnSeparator = '', columnSeparatorWidthPercent = 0, separatorFontSizePercent = fontSizePercent, separatorColor = 'black', separatorMarginLeftPercent = 0, separatorMarginRightPercent = 0) => {
-
- const fontSize = (fontSizePercent / 100) * rect.height;
- ctx.font = `${fontSize}px sans-serif`;
-
- let totalTextWidth = 0;
- texts.forEach(text => {
- totalTextWidth += ctx.measureText(text).width;
- });
-
- const separatorFontSize = (separatorFontSizePercent / 100) * rect.height;
-
- ctx.font = `${separatorFontSize}px sans-serif`;
- const separatorWidth = (columnSeparatorWidthPercent / 100) * rect.width;
- const totalSeparatorWidth = (texts.length - 1) * separatorWidth;
-
- const separatorMarginLeft = (separatorMarginLeftPercent / 100) * rect.width;
- const separatorMarginRight = (separatorMarginRightPercent / 100) * rect.width;
-
- const totalSpacing = (columnSpacingPercent / 100) * rect.width;
-
- const totalWidth = totalTextWidth + totalSeparatorWidth + totalSpacing + (texts.length - 1) * (separatorMarginLeft + separatorMarginRight);
-
- const startX = rect.x + (startXPercent / 100) * rect.width + (rect.width - totalWidth) / 2;
- const startY = rect.y + (startYPercent / 100) * rect.height - (fontSize / 2);
-
- let currentX = startX;
- texts.forEach((text, index) => {
- ctx.font = `${fontSize}px sans-serif`;
- ctx.fillStyle = color;
- ctx.fillText(text, currentX, startY + (fontSize / 2));
- currentX += ctx.measureText(text).width;
-
- if (index < texts.length - 1) {
-
- currentX += separatorMarginLeft;
-
- ctx.fillStyle = separatorColor;
- ctx.font = `${separatorFontSize}px sans-serif`;
-
- ctx.fillText(columnSeparator, currentX, startY + (separatorFontSize / 2));
-
- currentX += separatorWidth + separatorMarginRight + columnSpacingPercent / 100 * rect.width;
- }
- });
- };
- export { drawTextInRect, drawLineInRect, drawPointInRect ,drawImageInRect,drawBorderImageInRect, drawRectInRect, drawHorizontalTextList};
|