in reply to Re^2: Help with GD text
in thread Help with GD text

could you tell me how to rotate the text to any angle I like ?

See the documentation for  $image->stringFT( fgcolor, fontname, ptsize, angle, x, y, string ) ...

The arguments are as follows: fgcolor Color index to draw the string in fontname A path to the TrueType (.ttf) font file or a font pattern +. ptsize The desired point size (may be fractional) angle The rotation angle, in radians (positive values rotate co +unter clockwise) x,y X and Y coordinates to start drawing the string string The string itself If successful, the method returns an eight-element list giving the bou +ndaries of the rendered string: @bounds[0,1] Lower left corner (x,y) @bounds[2,3] Lower right corner (x,y) @bounds[4,5] Upper right corner (x,y) @bounds[6,7] Upper left corner (x,y)

Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^4: Help with GD text
by JimDuyer (Sexton) on Jun 18, 2011 at 17:05 UTC
    Thanks kind sir, I will look into that.