Jump to content

Image creation: create text from included file


poorman

Recommended Posts

Here is my script:
[code]<?php
$img_number = imagecreate(275,25);
$backcolor = imagecolorallocate($img_number,102,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);
$incFile = "songnow.php";
$foo = include($incFile);
imagefill($img_number,0,0,$backcolor);
$number = " Current song is $foo";

Imagestring($img_number,10,5,5,$number,$textcolor);

header("Content-type: image/jpeg");
imagejpeg($img_number);
?>[/code]

It has no problem generating text if I type it in but I want it to gather this text from a file. So I am trying to include songnow.php. Songnow.php is a plain text file, which I would like outputed. Which when I try it spits this out (first line being the text inside songnow.php:

311 - T & P Combo
Warning: Cannot modify header information - headers already sent by (output started at /home/bota/public_html/stream/signature/songnow.php:2) in /home/bota/public_html/stream/signature/index.php on line 12

There is no way I can modify songnow.php since it get constantly updated - song and artist information only nothing else. Anyway to make this work?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.