stil / gd-text

PHP class making it easy to type text on pictures. Supports multi-lined text, horizontal and vertical alignment.
401 stars 130 forks source link

Last line different alignment? #6

Closed marcusds closed 8 years ago

marcusds commented 8 years ago

I want to have a block of text center vertically and horizontally, and then after it a line that is right aligned, is this possible?

stil commented 8 years ago

It's impossible with public API, but you can easily hack the code. Look there: https://github.com/stil/gd-text/blob/master/src/Box.php#L228-L231 In foreach you can add simple check if $line is the line you want to right align. Then explicitly supply switch with $alignX = "right";.

I hope it helped.

marcusds commented 8 years ago

Yeah, figured something like that out myself. Thanks!