簡體   English   中英

如何使 context.fillText 中的文本不透明

[英]How can i make the text not transparent in the context.fillText

context.font = '20pt Calibri';
context.fillStyle = 'rgba(225,225,225,0.5)';
var width = context.measureText(message2).width;
context.fillRect(xIndent, yIndent+100, width, 60);

context.fillStyle = 'rgba(255,85,0,1.0)';
context.fillText(message3, xIndent, yIndent+100);

我希望context.fillText沒有透明度,並且context.fillRect有一些透明度

出於某種原因,我可以使兩者都透明或不透明

結果是文本和背景顏色具有相同的透明度

寫完第一個文本后,您需要重置所有內容。 因為你可以在你畫完或寫完東西后設置 fillStyle,它仍然會填充它。 所以,如果你想要一個接一個地繪制或寫入的東西,你需要重置所有東西,這樣下一個 fillStyle 就不會改變它的 fillStyle 。 寫完第一個文本后,您需要使用context.beginPath() 這是您更正的代碼:

context.font = '20pt Calibri';
context.fillStyle = 'rgba(225,225,225,0.5)';
var width = context.measureText(message2).width;
context.fillRect(xIndent, yIndent+100, width, 60);

context.beginPath();
context.fillStyle = 'rgba(255,85,0,1.0)';
context.fillText(message3, xIndent, yIndent+100);

每次你想畫畫或寫其他東西時最好使用context.beginPath() ......我希望這有幫助......

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM