Re: [PHP] getimagesize or loop pblm

2002-10-06 Thread Rasmus Lerdorf
It could take a while. Depends how fast your server's disk sub-system is. Going to disk to stat and open an image and then parse through the initial headers to get the sizing data can take some time. I'd suggest caching this data somewhere if you are going to need it on every request. -Rasmus

RE: [PHP] getimagesize or loop pblm

2002-10-06 Thread arnaud gonzales
] getimagesize or loop pblm It could take a while. Depends how fast your server's disk sub-system is. Going to disk to stat and open an image and then parse through the initial headers to get the sizing data can take some time. I'd suggest caching this data somewhere if you are going to need it on every

Re: [PHP] getimagesize or loop pblm

2002-10-06 Thread Sascha Cunz
] getimagesize or loop pblm It could take a while. Depends how fast your server's disk sub-system is. Going to disk to stat and open an image and then parse through the initial headers to get the sizing data can take some time. I'd suggest caching this data somewhere if you are going to need it on every