//内容
letcontent=detail.content
ctx.font=’16px微软雅黑’
ctx.fillStyle=’#000′
textWidth=660
letlineWidth=0
letfullWidth=0
for(leti=0;i<content.length;i++){
lineWidth+=ctx.measureText(content[i]).width
if(lineWidth<textWidth){
ctx.fillText(content[i],canvasWidth/2-textWidth/2+lineWidth,350)
fullWidth=lineWidth
}else{
ctx.fillText(content[i],canvasWidth/2+lineWidth-fullWidth-76,370)
}
}