Results 1 to 4 of 4

Thread: PHP image.

  1. #1
    Registered User
    Join Date
    Apr 2004
    Location
    EarthPlanet
    Posts
    2
    Thanks
    0
    Thanked
    0 times in 0 posts

    PHP image.

    Hello!

    I want to load text from a .txt file on the web and put it on to an image. How can I do that in php?

    Thanks.

  2. #2
    HEXUS webmaster Steve's Avatar
    Join Date
    Nov 2003
    Posts
    14,283
    Thanks
    293
    Thanked
    841 times in 476 posts
    PHP Code:
    $s = new signature();
    $s->sarcasm()->intellect()->font('Courier New')->display(); 

  3. #3
    HEXUS.net Webmaster
    Join Date
    Jul 2003
    Location
    UK
    Posts
    3,108
    Thanks
    1
    Thanked
    0 times in 0 posts
    depends if you want it added directly to the image or just to appear on top of the image. The first requires the use of the GD library in PHP, the second can be done with some simple CSS

  4. #4
    Big Ginge
    Join Date
    Jul 2003
    Location
    Durham/Brum
    Posts
    233
    Thanks
    0
    Thanked
    0 times in 0 posts
    PHP Code:
    <?php 
    $handle 
    fopen("filename.txt""r");  //opens text file 
    $content fread($handlefilesize("filename.txt"));  //reads content of file into $content 
    header("Content-type: image/png"); 
    $im = @imagecreate(13020
       or die(
    "Cannot Initialize new GD image stream");  //creates image with sizes (x, y) 
    $background_color imagecolorallocate($im255255255); //set bg colour 
    $text_color imagecolorallocate($im2331491); //set text color 
    imagecolortransparent($im$background_color);  //make bg transparent 
    imagestring($im455,  $content$text_color);  //write the text string to image 
    imagepng($im); //make image 
    imagedestroy($im); 
    fclose($handle); 
    ?>
    that will write your text to a png image with red font and transparent background.

    Col

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Favourite image of a car...
    By TomWilko in forum Automotive
    Replies: 19
    Last Post: 28-05-2004, 03:33 PM
  2. Dim monitor image with 9800 pro
    By quimico in forum Graphics Cards
    Replies: 4
    Last Post: 17-11-2003, 03:06 PM
  3. PHP and MySQL
    By Kezzer in forum Software
    Replies: 4
    Last Post: 28-10-2003, 02:59 PM
  4. Good car image sites?
    By DaBeeeenster in forum Automotive
    Replies: 1
    Last Post: 16-09-2003, 09:54 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •