2
我必須在畫布上繪製描邊填充。爲此,我必須分別調用ctx.fill和ctx.stroke,由於這個原因,中風的陰影會出現在我想避免的填充的頂部。 請問有人可以告訴我們是否有辦法避免這種情況?在HTML畫布上獲取用於填充和描邊的單個陰影
這是我的代碼。
ctx1.fillStyle = "blue";
ctx1.strokeStyle = "black";
ctx1.shadowColor = "rgba(0,255,0, 1)";
ctx1.shadowOffsetX = 50;
ctx1.shadowOffsetY = 50;
ctx1.lineWidth="20";
ctx.beginPath();
ctx.moveTo(300, 100);
ctx.lineTo(400, 100);
ctx.lineTo(400, 200);
ctx.lineTo(300, 200);
ctx.closePath();
ctx1.fill();
ctx1.stroke();
在此先感謝 拉胡爾