使用Canvas怎么實現(xiàn)文字碰撞檢測并抽???針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)專注于河西企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站設(shè)計,電子商務(wù)商城網(wǎng)站建設(shè)。河西網(wǎng)站建設(shè)公司,為河西等地區(qū)提供建站服務(wù)。全流程定制網(wǎng)站開發(fā),專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
計算文字在 canvas 中所占據(jù)的范圍
// 計算文字所需的寬度 var p = { x: 10, y: 10, name: "測試文字" }; var measure = ctx.measureText(p.name); // 求出文字在 canvas 畫板中占據(jù)的最大 y 坐標 var maxX = measure.width + p.x; // 求出文字在 canvas 畫板中占據(jù)的最大 y 坐標 // canvas 只能計算文字的寬度,并不能計算出文字的高度。所以就利用文字的寬度除以文字個數(shù)計算個大概 var maxY = measure.width / p.name.length + p.y; var min = { x: p.x, y: p.y }; var max = { x: maxX, y: maxY }; // bounds 為該文字在 canvas 中所占據(jù)的范圍。 // 在取點位坐標作為最小范圍時,textAlign、textBaseline 按照以下方式設(shè)置會比較準確。 // 如設(shè)置在不同的位置展示,范圍最大、最小點也需進行調(diào)整 // ctx.textAlign = "left"; // ctx.textBaseline = "top"; var bounds = new Bounds(min, max);
Bounds 范圍對象
/** * 定義范圍對象 */ function Bounds(min, max) { this.min = min; this.max = max; } /** * 判斷范圍是否與另外一個范圍有交集 */ Bounds.prototype.intersects = function(bounds) { var min = this.min, max = this.max, min2 = bounds.min, max2 = bounds.max, xIntersects = max2.x >= min.x && min2.x <= max.x, yIntersects = max2.y >= min.y && min2.y <= max.y; return xIntersects && yIntersects; };
檢測
// 每次繪制之前先與已繪制的文字進行范圍交叉檢測 // 如發(fā)現(xiàn)有交叉,則放棄繪制當前文字,否則繪制并存入已繪制文字列表 for (var index in _textBounds) { // 循環(huán)所有已繪制的文字范圍,檢測是否和當前文字范圍有交集,如果有交集說明會碰撞,則跳過該文字 var pointBounds = _textBounds[index]; if (pointBounds.intersects(bounds)) { return; } } _textBounds.push(bounds); ctx.fillStyle = "red"; ctx.textAlign = "left"; ctx.textBaseline = "top"; ctx.fillText(p.name, p.x, p.y);
關(guān)于使用Canvas怎么實現(xiàn)文字碰撞檢測并抽稀問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。