Jump to content

Gobiggi

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Gobiggi's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. $_GET is the same but has replaced $_HTTP_GET_VARS in newer php version ps. this is supposed to be a help forum so why are you people replying once and then never answering any more questions!? you did that to me before! and as a help forum i rate you 2/10
  2. c'mon nearly an hour and no replies, i really want to get this script done so i can get it out of the way
  3. Wow! Thanks man, but i still have one problem, when i type: img.php?text=Gobiggi no text appears but thanks for the above text, and hopefully you can help me overcome this problem, because im a total php noob,
  4. k ive been looking for help in loads of places, and got some of it, so ive got this far but my script still doesn't work, all i get is a red X, what i am aiming for is to create images like this: [img]http://i111.photobucket.com/albums/n148/Gobiggi/Gobiggi.gif[/img] but what i need is the last pixel of the last word staying in the same place for every text that is entered, so far my script is: [code]<?php   header("Content-type: image/png");   $string = urldecode($_GET['text']);   $im = imagecreatefrompng("template.png");   $fontsize = 10;   $fontsize2 = 12;   $angle = 25;   $font = "visitor1.ttf";   $textColor = imagecolorallocate($im,255,255,255)   $textColor2 = imagecolorallocate($im,0,0,0);   array imagettfbbox(12,25,$font,$string);   imagettftext($im, $fontSize2, 25, 291, -1, $textColor2, $font, $string);   imagettftext($im, $fontSize, 25, 290, 0, $textColor, $font, $string);   imagepng($im);   imagedestroy($im); ?> [/code] but i really think ive made loads of mistakes that i cannot find, please help me do this.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.