watermark image taking unusual longer time to generate

See all posts Reply

watermark image taking unusual longer time to generate new!
by Rakib, 15 years, 1 month ago
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!
by colin, 15 years, 1 month ago
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