Connecting Tech Pros Worldwide Help | Site Map

Image processing in functions.

 
LinkBack Thread Tools Search this Thread
  #1  
Old July 17th, 2005, 05:43 AM
Roger
Guest
 
Posts: n/a
Default Image processing in functions.

I have script (main.php) that calls a secondary script (image.php)
that produces a graphic. The invocation in main.php is like this...

print "<img src=" . chr(34) . "image.php?option=$draw" . chr(34) . ">"

What I would like to do is incoporate all the code contained in
image.php into my main.php as a function. As it currently stands if I
do this, I get an error message saying that the headers already sent.
I've not quite got my head around this- any help would be gratefully
received.


  #2  
Old July 17th, 2005, 05:43 AM
Garp
Guest
 
Posts: n/a
Default Re: Image processing in functions.


"Roger" <fspooner@ripnet.jj.ik> wrote in message
news:hm3fc0drovsbqcp27jra5jidc1jgrt6948@4ax.com...[color=blue]
> I have script (main.php) that calls a secondary script (image.php)
> that produces a graphic. The invocation in main.php is like this...
>
> print "<img src=" . chr(34) . "image.php?option=$draw" . chr(34) . ">"
>
> What I would like to do is incoporate all the code contained in
> image.php into my main.php as a function. As it currently stands if I
> do this, I get an error message saying that the headers already sent.
> I've not quite got my head around this- any help would be gratefully
> received.[/color]

Something in image.php is sending headers (most likely it'll be the
content-type for jpg or png or whatever) and so is main.php - without seeing
the output I can't determine what. If you tweak image.php so it produces a
file on the server but only returns the URL to it, you can link it out and
get all the page output produced by the main.php.

Garp


  #3  
Old July 17th, 2005, 05:44 AM
Alvaro G Vicario
Guest
 
Posts: n/a
Default Re: Image processing in functions.

*** Roger wrote/escribió (Wed, 09 Jun 2004 23:52:46 +0100):[color=blue]
> print "<img src=" . chr(34) . "image.php?option=$draw" . chr(34) . ">"[/color]
[color=blue]
> What I would like to do is incoporate all the code contained in
> image.php into my main.php as a function.[/color]

You mean that you want a script that can either output HTML or graphics,
don't you? It should be rather straightforward:

function graphic(){
// Print graphic
}

if($_GET['option']=='WHATEVER'){
graphic();
exit;
}else{
// Print HTML
}
[color=blue]
> As it currently stands if I do this, I get an error message saying that
> the headers already sent. I've not quite got my head around this- any
> help would be gratefully received.[/color]

You are probably mixing graphics and HTML in one single document.

--
--
-- Álvaro G. Vicario - Burgos, Spain
--
 

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,989 network members.