class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
I am currently using 0.24 to browse and upload my images.
I do however use fopen to upload remote images from other websites. I was wondering if its possible to upload remote images and process them with this class.Reply
I am currently using 0.24 to browse and upload my images.
I do however use fopen to upload remote images from other websites. I was wondering if its possible to upload remote images and process them with this class.
copy('http://foo/test.jpg', '/htdocs/test.jpg');after this there is a local copy of the file and you can use class.upload as well:
$handle = new Upload('/htdocs/test.jpg');