community.

I know that there are many answers here, manuals, tutorials and references over the internets and amny more about this question. Also I know that knowledge of linear algebra is required. But when I think about time to figuring out all the theory and solving exercises in practice - my head is blowing off and I can't do the simplest things :(

Please, if you know a little fast solution how to make rotation of text over its center before rendering it - tell me, pleeease.

For now I have:

#...
cr.move_to(*text_center)
myX, myY = text_center[0] - (width / 2), text_center[1] + (height / 2)

cr.save()
cr.translate(myX, myY)
cr.rotate(radians(text_angle))
cr.show_text(letter)
cr.restore()
#...

But my letter isn't rotating around itself. It's just like falling down to the right side :( I know that my code isn't right. Maybe I miss transformation but I don't know how to make it right.

UPDATE: Unfortunately, text are not affected by translations, so

cr.translate(10000, 10000)
cr.rotate(radians(15))
cr.show_text("hello")

will be exactly the same as

cr.rotate(radians(15))
cr.show_text("hello")

And I don't know how to make text rotation over its center without making new surface or something (like new layer in graphic processor) :(

link|improve this question

56% accept rate
feedback

2 Answers

up vote 1 down vote accepted

OK so cairo allows for text move_to and rotate. This means that what you want is to figure out (x,y) for move_to (T), such that when you rotate (R), the center point of your text is at your desired location, c=(cx,cy):

enter image description here

So you have to solve the equation Mv = c, where v is the text center relative to the text origin:

M = T*R

T = (1 0 x)
    (0 1 y)
    (0 0 1)

R =  (cos r    -sin r   0)
     (sin r     cos r   0)
     (0            0    1)

v = (w/2, h', 1)

c = (cx, cy, 1)

h' = h/2 - (h - y_bearing)

Sanity checks:

  • when r is 0 (no rotation), you get x=cx-w/2, y=cy-h', which you know is the correct answer
  • when r=-90 (text sideways, with "up" towards the right), you get what you expect, ie x = cx - h' and y = cy + w/2

For python code, you will have to rewrite the above equation so you end up with A*t=b, where t=(x,y), and you will compute t = inv(A)*b. Then, you will simply do

cr.move_to(x, y)
cr.rotate(r)
cr.show_text(yourtext)

Note that the coordinate system in cairo has +y going down so there will be a couple signs to fix, and maybe y_bearing is not correct, but you get the idea.

link|improve this answer
"place text at text_center" - how can I make this? I only have separated function cr.move_to(x, y) and separated cr.show_text(text). When must I make move_to() - before translation and rotation or after and before placing text? – Крайст Dec 12 '11 at 10:34
my text_center means coordinates of origin's x, y to place text exactly to overlap preffered point by its (text) center (w/2, h/2). – Крайст Dec 12 '11 at 11:52
these codes isn't and will not working because rotation happens always around current_point. If I write: cr.move_to(a, b); cr.rotate(rad); cr.show_text(); - it'll be rotated only around (a, b) and translation will not affect rotation. But I know that there is some formulas like [here][1] to calculate new coords where to move to. [1]: codeproject.com/KB/GDI/textrotation.aspx?display=PrintAll – Крайст Dec 13 '11 at 1:29
thank you very much for your expanded answer. I can't understand a few things in that but I'll try to figure it out cause it's very important to me to understand all of this in my own head =) Thank you so much! – Крайст Jan 7 at 6:49
@Крайст it would be nice if you could let everyone know if this is the answer (mark as answer), or at least useful (vote up, with comment about what you find). – Schollii Jan 8 at 1:59
show 1 more comment
feedback

Should

myX, myY = text_center[0] + (height / 2), text_center[1] - (width / 2)

be

myX, myY = text_center[0] - (width / 2), text_center[1] + (height / 2)

?

That might explain why it's falling down to the right side.

link|improve this answer
oh, please, it's my fault. I've wrote this code from my head on my phone. on real code it's quiet like in your example. but when I go home I'll check. you think that translating - is the only transformation that I need? – Крайст Dec 11 '11 at 19:59
this isn't error. result is the same. maybe something complex will fix that situation? maybe new transformation matrix or different code order? – Крайст Dec 11 '11 at 20:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.