How is it possible to draw "curved" text ?

edited October 2013 in How To...

Hello,

I would like to know if there is a way to make a text follow a curved line, or maybe a noise function ?

I guess one possibility would be to record the points of the mentioned line or noise function and display a string character by character using map(), right ?

but is there a better way ?

Tagged:

Answers

  • edited October 2013 Answer ✓

    No, not in Processing, there is no high-level drawCurvedText() function, you have to do this by hand, using carefully chosen translate() / rotate() functions on each character.

    Unless there is a library to do that for you! (Perhaps Geomerative?)

  • Yes good catch ! Geomerative will definitely help thanks

Sign In or Register to comment.