MCPcopy Create free account
hub / github.com/TeleBoxOrg/TeleBox_Plugins / imageAlpha

Function imageAlpha

quote/generate.js:102–108  ·  view source on GitHub ↗
(image, alpha)

Source from the content-addressed store, hash-verified

100
101async function drawPatternBackground(canvas, centerColor, edgeColor, patternImage, patternAlpha) {
102 const ctx = canvas.getContext("2d");
103
104 const gradient = ctx.createRadialGradient(
105 canvas.width / 2, canvas.height / 2, 0,
106 canvas.width / 2, canvas.height / 2, canvas.width / 2
107 );
108 gradient.addColorStop(0, centerColor);
109 gradient.addColorStop(1, edgeColor);
110
111 ctx.fillStyle = gradient;

Callers 1

drawPatternBackgroundFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected