I am using the Thumbnail Generator Class from http://www.phpgd.com/scripts.php?script=1 This class works great for my needs, unfortunately, implementing it is not a walk in the park.
About my site :
My site is already is full of content and images (mostly thumbnails) that are resized by html (width = ). I have an index page that is the outside frame (hyperlinks, search bar) and a "main" that is in the middle of the outside frame and displays the thumbnails.
Problem :
When i invoke the thumbnail class ... i receive the good ol' "Warning: Cannot modify header information - headers already sent by" warning message, and i guess that's because
Code: Select all
header("Content-type: image/jpeg;");Thanks
-- tarja