PHP-GD

 
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions
View previous topic :: View next topic  
Author Message
cmxflash
-


Joined: 11 Dec 2004
Posts: 872

PostPosted: Fri Apr 15, 2005 9:48 pm    Post subject: PHP-GD Reply with quote

I've just installed PHP-GD on my server, and it works fine. I just have one question:
how do i create a new "line" in a dynamic picture, like <br> in html?

This is the script I use:

<?php
$im = imagecreate(300, 300);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 5, 0, 0, "This text is going to be printed", $textcolor);
header("Content-type: image/gif");
imagegif($im);
?>
Back to top View user's profile Send private message
roganty
-


Joined: 08 Jun 2004
Posts: 357
Location: Bristol, UK

PostPosted: Sat Apr 16, 2005 12:53 pm    Post subject: Re: PHP-GD Reply with quote

cmxflash wrote:
I've just installed PHP-GD on my server, and it works fine. I just have one question:
how do i create a new "line" in a dynamic picture, like <br> in html?

This is the script I use:

<?php
$im = imagecreate(300, 300);
$bg = imagecolorallocate($im, 255, 255, 255);
$textcolor = imagecolorallocate($im, 0, 0, 0);
imagestring($im, 5, 0, 0, "This text is going to be printed", $textcolor);
header("Content-type: image/gif");
imagegif($im);
?>

There are two ways
1) add a second imagestring();
2) add "\r\n" widthout the quotes at the end of the text string ie:
imagestring($im, 5, 0, 0, "This text is going to be printed\r\n", $textcolor);
_________________
Anthony R

Roganty
| Links-Links.co.uk
Back to top View user's profile Send private message Visit poster's website
cmxflash
-


Joined: 11 Dec 2004
Posts: 872

PostPosted: Sat Apr 16, 2005 2:31 pm    Post subject: Reply with quote

It works fine, thanks for the help.
Back to top View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Aprelium Forum Index -> General Questions All times are GMT + 1 Hour
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB phpBB Group