619

Product support

Get help in the plugin support forum.

  • Added on Dec 15, 2015
  • Current version: 1.0.2
  • Platform Compatibility
    v3.x not tested
    v2.x not tested
    v1.x use latest
  • Created by

Categories

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

1.0.2

Makes sure the Efix data is iterable

Dec 12, 2015

1.0.1

Starting up the plugin

Dec 11, 2015