Last active
March 24, 2022 11:31
-
-
Save syamgot/9bf25ac06b6a1ac910d514c97d0134fc to your computer and use it in GitHub Desktop.
折り返しと改行を伴うテキストをキャンバスに描画する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(){ | |
var text = 'F1ドライバーのロズベルグ選手は、所属するメルセデスチームとの契約をカリブ海の英領バージン諸島にある企業を介して行っていることが判明。'; | |
var canvas, context; | |
canvas = document.createElement('canvas'); | |
canvas.width = 512; | |
canvas.height = 256; | |
document.body.appendChild(canvas); | |
context = canvas.getContext('2d'); | |
context.fillStyle = 'blue'; | |
context.font = "12px 'MS ゴシック'"; | |
context.textAlign = 'left'; | |
fixedFillText(context, text, 100, 16); | |
/** | |
* 折り返しと改行を伴うテキストをキャンバスに描画する. | |
* 改行文字は\n | |
* alignがright|center以外が指定された時はleftとして扱う | |
* @param context | |
* @param width 横幅 | |
* @param lineHight 行送り | |
* @param align 行揃え right|center | |
*/ | |
function fixedFillText(context, text, width, lineHight, align) { | |
var column = [''], line = 0, padding; | |
for (var i = 0; i < text.length; i++) { | |
var char = text.charAt(i); | |
if (char == "\n" || context.measureText(column[line] + char).width > width) { | |
line++; | |
column[line] = ''; | |
} | |
column[line] += char; | |
} | |
var padding, lineWidth; | |
for (var i = 0; i < column.length; i++) { | |
var lineWidth = context.measureText(column[i]).width; | |
if (align == 'right') { | |
padding = width - lineWidth; | |
} | |
else if (align == 'center') { | |
padding = (width - lineWidth)/2; | |
} | |
else { | |
padding = 0; | |
} | |
context.fillText(column[i], 0 + padding, lineHight + lineHight * i); | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment