this.contents.outlineColor = 'rgba(0, 0, 0, 0)'; 最後一個0可以把文字的描邊變透明,
this.contents.outlineColor = 'rgba(0, 0, 0, 0.8)'; 設為0.8就是透明度0.8
//--------這樣可以把"範例文字"取消描邊,下面的"描邊文字"再使用描邊----------
this.contents.outlineColor = 'rgba(0, 0, 0, 0)';
this.drawText("範例文字",0,0);
this.contents.outlineColor = 'rgba(0, 0, 0, 0.8)';
this.drawText("描邊文字",0,0);
//------------------------------------------------------------
而如果使用了this.contents.outlineWidth = 0;似乎有些情況還會出現描邊,不建議使用。