Hi guys, I'm working on a complete revamp of Effervescence and having a lot of fun with the new features.
The way I've got image descriptions and tags implemented is to check via `getImageDesc()!=""` and `getTags()!=""` that these fields are not empty, so as to make the styling cleaner if they are absent.
I would like to do the same with EXIF data. How can I check that the EXIF indeed contains information and not a blank array?
Comments
BTW, nice effervescent mod, but horizontal scrolling is really a little inconvenient...
Regarding Effervescence, the horizontal scrolling is just a fun little thing I added for my own gallery. I'm actually starting off from scratch for v2. I might even have to give it a new name, because I have a feeling it will be quite different from my original Effervescence theme.
http://www.php.net/manual/en/function.count.php
Just for reference I'm using `count(getTags())!=0` and `count(getImageEXIFData())!=0` to check whether the tags or EXIF contain any data.