Results 1 to 7 of 7

Thread: Maker PHP Write Words on a Picture

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2009
    Posts
    15

    Maker PHP Write Words on a Picture

    So say I have a picture with some design on it.
    I have two red parts on the picture for text generated by the PHP to go there.

    So I have a script that Says what month it is. When someone visits the page, the image will pop up and in the red part the PHP will show what month it is.

    How can I do this?

  2. #2
    PowerPoster
    Join Date
    Sep 2003
    Location
    Edmonton, AB, Canada
    Posts
    2,629

    Re: Maker PHP Write Words on a Picture

    depending on the type of image, you can start by using one of these functions:



    then, you can assign a color within this image using the imageColorAllocate() function.

    then, you can draw text on the image using either one of these functions (using whatever color you picked in the last step):
    • imageTTFText() (note the TTF in the function's name -- that means you'll need to supply a true type font file for this function to use [eg. it has to be located on your server!])
    • imageString() (note that external font files can be loaded for this function, but they would be in a different format than TTF)


    and finally, you can display it using one of these functions (it'd be best to stick with whichever function coincides with the one you created your image with!):


    as always, you can ask questions if you don't understand something.

  3. #3
    Frenzied Member I_Love_My_Vans's Avatar
    Join Date
    Jan 2005
    Location
    In the PHP compiler
    Posts
    1,275

    Re: Maker PHP Write Words on a Picture

    imageCreateFrom...
    Last edited by I_Love_My_Vans; Nov 24th, 2009 at 11:09 AM.

  4. #4
    PowerPoster kfcSmitty's Avatar
    Join Date
    May 2005
    Posts
    2,248

    Re: Maker PHP Write Words on a Picture

    actually imageCreateFrom...

  5. #5
    Frenzied Member I_Love_My_Vans's Avatar
    Join Date
    Jan 2005
    Location
    In the PHP compiler
    Posts
    1,275

    Re: Maker PHP Write Words on a Picture

    Quote Originally Posted by kfcSmitty View Post
    actually imageCreateFrom...
    Balls...

    Now I look stupid

  6. #6
    PowerPoster
    Join Date
    Sep 2003
    Location
    Edmonton, AB, Canada
    Posts
    2,629

    Re: Maker PHP Write Words on a Picture

    whoops, typing fast and copying and pasting. links work, though. you read too much into it! ;)

  7. #7
    Hyperactive Member
    Join Date
    May 2008
    Location
    >> ( ҉ )
    Posts
    413

    Re: Maker PHP Write Words on a Picture


Posting Permissions

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



Click Here to Expand Forum to Full Width