Is there a way that I can send an image from my server to a script on another server for processing?
Im working with Facebook PHP/API I've found plenty of examples on how to send files uploaded to my script directly to facebook via a form with method post, but I need to do some editing of the uploaded image before I send it to facebook.
What FB expects my script to do:
#use multipart form with post method to send uploaded image to there server.
What I need to do but dont know how:
#User uploads photo via my script (working)
#Script processes the photo and adds various things using GD libs(Working)
#Send to FB script as if it were uploaded by the user via the multi part form.(Heres where Im stuck)
I just dont know how to send my picture to FB. Or how to format the url so that it will work with the FB Script. any ideas suggestions?