Is there an alternative to getimagesize() in PHP that runs faster? I’m trying to check the width and height of a lot of images (and only display the ones that meet the minimum threshold) and echo them to user. getimagesize() takes up to 30 seconds to process when I have a lot of images on the page.
Thanks!
you can try imagesx() and imagesy()