Workng with GD library but have hit a wall. I have a script which resizes an image and then prints it to a browser with.
That works fine but I want to save a copy of that image. Example scripts show the following code but I cannot get it to save the file.
I have set the permissions to 'wide open' but no joy - can anyone see what I am missing?
Keith
Code:
ImageJPEG($thumb);
Code:
imagejpeg($thumb, 'zytr.jpg', 100) ;
Keith