Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 650 Bytes

usage_0.2.1.md

File metadata and controls

32 lines (23 loc) · 650 Bytes

Usage

Using factory method

<?php
// reader with Native adapter
$reader = \PHPExif\Reader::factory(\PHPExif\Reader::TYPE_NATIVE);

// reader with Exiftool adapter
//$reader = \PHPExif\Reader::factory(\PHPExif\Reader::TYPE_EXIFTOOL);

$exif = $reader->getExifFromFile('/path/to/file');

echo 'Title: ' . $exif->getTitle() . PHP_EOL;

Using custom options

<?php
$adapter = new \PHPExif\Reader\Adapter\Exiftool(
    array(
        'toolPath'  => '/path/to/exiftool',
    )
);
$reader = new \PHPExif\Reader($adapter);

$exif = $reader->getExifFromFile('/path/to/file');

echo 'Title: ' . $exif->getTitle() . PHP_EOL;