On my previous server, I could use this function in GD :
Code:
Code: Select all
ImageJPEG ($img_handle, "e;image.jpg"e;, 75);However, I moved to another server. Now when I put that code in, my GD script returns errors. However, when I put this code in and upload it to my new server, it works!
Code:
Code: Select all
ImageJPEG ($img_handle, "e;"e;, 75);Problem is, I dearly need to save the image on my website. What should I do?