I'm trying to validate JPX images using the getimagesize() method. No matter the file, the result is always
null. It's working fine for jp2 images, tiff images, and other formats. The PHP documentation says it should support JPX images but I can't seem to get it working.
I'm simply just doing this:
Code: Select all
$info = getimagesize("bx_1323.jpx");
var_dump($info);
I've tried with about 5 different jpx images. I've inspected the headers of the files and they all seem valid.