exiftool / wrapper
Wrapper for exiftool
Installs: 2 887
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- symfony/process: ^6.1
This package is not auto-updated.
Last update: 2025-09-02 23:41:06 UTC
README
Introduction
PHP wrapper around the exiftool
command
Table of contents:
Installation
1 - Install mediainfo
You should install exiftool:
On linux:
$ sudo apt-get install exiftool
On Mac:
$ brew install exiftool
2 - Integration in your php project
To use this library install it through Composer, run:
$ composer require exiftool/wrapper
How to use
Retrieve media information container
<?php //... $exif = new \ExiftoolWrapper\Exiftool(); //... $mediaInfo = new Exiftool(); $mediaInfoContainer = $mediaInfo->getInfo('image.jpg'); //...