Jump to content

qoronaluvr

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by qoronaluvr

  1. so what do i do
  2. whats this htacess you poeple talk about when i try it nothing happens gamehead. <?php Header ('Content-type: image/jpeg'); Header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0'); Header('Expires: Thu, 19 Nov 1981 08:52:00 GMT'); Header('Pragma: no-cache'); // create the image $image = imagecreatefromjpeg("background.jpg"); // set the colours $cool = imagecolorallocate($image, 81, 86, 96); $black = imagecolorallocate($image, 0, 0, 0); $white = imagecolorallocate($image, 255, 255, 255); $red = imagecolorallocate($image, 255, 0, 0); $grey = imagecolorallocate($image, 204, 204, 204); $green = imagecolorallocate($image, 206, 129, 18); $blue = imagecolorallocate($image, 0, 0, 255); // set quote file $quotes = file('quotes.txt'); $quote = array_rand($quotes); // set the font and print text $font = '/path/to/your/ttf/font'; $joke = wordwrap($quotes[$quote], 60, "\n", 1); $joke = explode("\n", $joke); for($i=0; $i<count($joke); $i++) { ImageTTFText ($image, 8, 0, 14, (23+($i*15)), $white, $font, $joke[$i]); } // output and destroy imagepng($image); imagedestroy($image); ?>
×
×
  • Create New...