This plugin makes it possible to show Exif information on all uploaded images in the System/Files model by using miljar/php-exif
- Requires no extra database tables or fields
- Interacts directly with the System/Files model only
- Only gets the information when you require it
This plugin makes it possible to show Exif information on all uploaded images in the System/Files model by using miljar/php-exif. All you have to do is install this plugin and go:
{{ image.exif }}
That will show all available Exif-information as a JSON-object. To iterate over all Efix informations you do this:
<ul>
{% for key, value in image.exif.getAttributes() %}
<li>{{ key }}: {{ value }}</li>
{% endfor %}
</ul>
And of course. If you only want one of them, like the camera. Simply type:
{{ image.exif.camera }}
And that's it
-
This plugin has not been reviewed yet.
-
| 1.0.2 |
Makes sure the Efix data is iterable Dec 12, 2015 |
|---|---|
| 1.0.1 |
Starting up the plugin Dec 11, 2015 |