Re: [PHP] imagejpeg() output

2005-01-16 Thread Rasmus Lerdorf
On Sat, 15 Jan 2005, Steven Simmons wrote: > I'm trying to write an object oriented system for saving my uploaded > files to a blog. > > I am using php to resize the original photos and save a thumbnail . > > When I get all done, I want to do something like this: > > $tempImageData = image

Re: [PHP] imagejpeg() output

2005-01-16 Thread Richard Lynch
Steven Simmons wrote: > When I get all done, I want to do something like this: > > $tempImageData = imagejpeg( $imageResource, '', 75 ); > $outputHandler -> save ( $tempImageData ); > > Where the $outputHandler is an object that knows how/where to save the > file. > However, I've no

Re: [PHP] imagejpeg() output

2005-01-16 Thread Greg Donald
On Sat, 15 Jan 2005 08:39:16 -0800, Steven Simmons <[EMAIL PROTECTED]> wrote: > I'm trying to write an object oriented system for saving my uploaded > files to a blog. > > I am using php to resize the original photos and save a thumbnail . > > When I get all done, I want to do something like this

[PHP] imagejpeg() output

2005-01-15 Thread Steven Simmons
I'm trying to write an object oriented system for saving my uploaded files to a blog. I am using php to resize the original photos and save a thumbnail . When I get all done, I want to do something like this: $tempImageData = imagejpeg( $imageResource, '', 75 ); $outputHandler -> sa