In my PHP debugger (at a breakpoint) I unambiguously observe that the PHP function getimagesize() returns the incorrect height for an animated GIF. Opening the GIF in IrfanView reveals the proper height (266 x 199 pixels). However, getimagesize() reports the dimensions to be 266 x 353 px (indices 0 and 1, respectively, of the array returned from getimagesize()).
(The bits per pixel returned by getimagesize() is also incorrect - it's reported as 5, instead of 8 - but http://php.net/manual/en/function.getimagesize.php indicates that this is to be expected for an animated GIF.)
Can someone please explain to me why getimagesize() is failing in this scenario, and what workaround might be available.