exiftool/wrapper

Wrapper for exiftool

Installs: 2 925

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/exiftool/wrapper

dev-dev 2023-05-02 12:54 UTC

This package is not auto-updated.

Last update: 2025-12-24 01:11:41 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');
//...