日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > HTML >内容正文

HTML

html text width,HTML5 Text Canvas rotate in case text width is larger than maximum width allowed

發布時間:2024/9/27 HTML 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 html text width,HTML5 Text Canvas rotate in case text width is larger than maximum width allowed 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

問題

Friends, i'm finding rotating a text canvas object a bit tricky. The thing is, I'm drawing a graphic, but sometimes the width of each bar is smaller than the 'value' of that bar. So I have to ratate the 'value' 90 degrees. It will work in most cases.

I am doing the following

a function(x, y, text, maxWidth...)

var context = this.element.getContext('2d');

var metric = context.measureText(text); //metric will receive the measures of the text

if(maxWidth != null){

if(metric.width > maxWidth) context.rotate(Math.PI / 2);

}

context.fillText(text, x, y);

Ok, but it doesn't really work. Problems that I have seen: The text duplicates in different angles. The angles are not what I want (perhaps just a matter of trigonometry).

Well I just don't know what to do. I read something about methods like 'save' and 'restore' but I don't what to do with them. I've made some attempts but no one worked.

Would you help me with this, guys?

回答1:

This is a bit tricky to answer simply because there are a lot of concepts going on, so I've made you an example of what I think you'd like to do here:

http://jsfiddle.net/5UKE3/

The main part of it is this. I've put in a lot of comments to explain whats going on:

function drawSomeText(x, y, text, maxWidth) {

//metric will receive the measures of the text

var metric = ctx.measureText(text);

console.log(metric.width);

ctx.save(); // this will "save" the normal canvas to return to

if(maxWidth != null && metric.width > maxWidth) {

// These two methods will change EVERYTHING

// drawn on the canvas from this point forward

// Since we only want them to apply to this one fillText,

// we use save and restore before and after

// We want to find the center of the text (or whatever point you want) and rotate about it

var tx = x + (metric.width/2);

var ty = y + 5;

// Translate to near the center to rotate about the center

ctx.translate(tx,ty);

// Then rotate...

ctx.rotate(Math.PI / 2);

// Then translate back to draw in the right place!

ctx.translate(-tx,-ty);

}

ctx.fillText(text, x, y);

ctx.restore(); // This will un-translate and un-rotate the canvas

}

To rotate around the right spot you have to translate to that spot, then rotate, then translate back.

Once you rotate the canvas the context is rotated forever, so in order to stop all your new drawing operations from rotating when you dont want them to, you have to use save and restore to "remember" the normal, unrotated context.

If anything else doesn't make sense let me know. Have a good time making canvas apps!

來源:https://stackoverflow.com/questions/7755050/html5-text-canvas-rotate-in-case-text-width-is-larger-than-maximum-width-allowed

總結

以上是生活随笔為你收集整理的html text width,HTML5 Text Canvas rotate in case text width is larger than maximum width allowed的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。