Center text on image

See all posts See thread Reply

Re: Center text on image new!
by Vincent, 17 years ago
Cool, thanks Colin.

I do have one questions, i have a newline in the above text as you see.

However, in the made image \n just appears and not a actual newline.

How is this caused?Reply
Re: Center text on image new!
by colin, 17 years ago
You should be able to use a line break. Make sure that your negative margin you set in $foo->image_crop is enough for two lines. Use something like 20 pixels, and you should be able to see the two lines.

Also, make sure that your string is enclosed in double quotes, not single quotes, otherwise the line break will not be interpreted. For instance:
$foo->image_crop = '0 0 -22 0';
$foo->image_text = "some text here\na new line";
Reply