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 regenerating a png grayscale image with watermark using flash. It seems the image is created after a long time. It's getting the new designed image after a considerable amount of time. It seems that the $handle->processed returns true value immediately even though the water mark image is created after a long delay. Can any one have idea what may be the problem.Reply
Re: watermark image taking unusual longer time to generate new!
I am not sure what can be happening... When process() returns true, it has saved the file before.
My guess would be that your code is on a server with some kind of filer (Netapp, etc...) which explains why you may see the file later (read), even though PHP has written it at the right time (write).
To check, right after calling process(), add some PHP code to check whether the image has been created or not.Reply
My guess would be that your code is on a server with some kind of filer (Netapp, etc...) which explains why you may see the file later (read), even though PHP has written it at the right time (write).
To check, right after calling process(), add some PHP code to check whether the image has been created or not.