溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

HTML5 Canvas中實(shí)現(xiàn)繪制一個(gè)像素寬的細(xì)線

發(fā)布時(shí)間:2020-07-14 13:21:14 來(lái)源:網(wǎng)絡(luò) 閱讀:323 作者:gloomyfish 欄目:移動(dòng)開(kāi)發(fā)

正統(tǒng)的HTML5 Canvas中如下代碼

ctx.lineWidth = 1; ctx.beginPath(); ctx.moveTo(10, 100); ctx.lineTo(300,100); ctx.stroke();
運(yùn)行結(jié)果繪制出來(lái)的并不是一個(gè)像素寬度的線

HTML5 Canvas中實(shí)現(xiàn)繪制一個(gè)像素寬的細(xì)線

感覺(jué)怎么好粗啊,跟常常見(jiàn)到的網(wǎng)頁(yè)版各種繪制線效果

很不一樣,難道HTML5 Canvas就沒(méi)想到搞好點(diǎn)嘛

其實(shí)這個(gè)根本原因在于Canvas的繪制不是從中間開(kāi)始的

而是從0~1,不是從0.5~1 + 0~0.5的繪制方式,所以

導(dǎo)致fade在邊緣,看上去線很寬。

解決方法有兩個(gè),一個(gè)是錯(cuò)位覆蓋法,另外一種是中心

平移(0.5,0.5)。實(shí)現(xiàn)代碼如下:

錯(cuò)位覆蓋法我已經(jīng)包裝成一個(gè)原始context的函數(shù)

/**  * <p> draw one pixel line </p>  * @param fromX  * @param formY  * @param toX  * @param toY  * @param backgroundColor - default is white  * @param vertical - boolean  */ CanvasRenderingContext2D.prototype.onePixelLineTo = function(fromX, fromY, toX, toY, backgroundColor, vertical) { 	var currentStrokeStyle = this.strokeStyle; 	this.beginPath(); 	this.moveTo(fromX, fromY); 	this.lineTo(toX, toY); 	this.closePath(); 	this.lineWidth=2; 	this.stroke(); 	this.beginPath(); 	if(vertical) { 		this.moveTo(fromX+1, fromY); 		this.lineTo(toX+1, toY); 	} else { 		this.moveTo(fromX, fromY+1); 		this.lineTo(toX, toY+1); 	} 	this.closePath(); 	this.lineWidth=2; 	this.strokeStyle=backgroundColor; 	this.stroke(); 	this.strokeStyle = currentStrokeStyle; };
中心平移法代碼如下:

	ctx.save(); 	ctx.translate(0.5,0.5); 	ctx.lineWidth = 1; 	ctx.beginPath(); 	ctx.moveTo(10, 100); 	ctx.lineTo(300,100); 	ctx.stroke(); 	ctx.restore();
要特別注意確保你的所有坐標(biāo)點(diǎn)是整數(shù),否則HTML5會(huì)自動(dòng)實(shí)現(xiàn)邊緣反鋸齒

又導(dǎo)致你的一個(gè)像素直線看上去變粗了。

運(yùn)行效果:

HTML5 Canvas中實(shí)現(xiàn)繪制一個(gè)像素寬的細(xì)線

現(xiàn)在效果怎么樣,這個(gè)就是HTML5 Canvas畫(huà)線的一個(gè)小技巧

覺(jué)得不錯(cuò)請(qǐng)頂一下。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

vas
AI