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.
The images that you create with the class are being written to the server. The purpose of the class is not to delete any images.
If you want to delete some of the images, either you ask the class not to create them in the first place, either you delete them afterwards, in your script.
If you talk about the source image, it is being stored in the PHP temp directory, and will eventually be deleted after a while. Else, you can simply call $foo->clean() to delete the source image.Reply
If you want to delete some of the images, either you ask the class not to create them in the first place, either you delete them afterwards, in your script.
If you talk about the source image, it is being stored in the PHP temp directory, and will eventually be deleted after a while. Else, you can simply call $foo->clean() to delete the source image.