tacoberu/php-exif-tools
最新稳定版本:v0.1.2
Composer 安装命令:
composer require tacoberu/php-exif-tools
包简介
php-exif-tools is a simple library for manipulate (read and write) with the EXIF meta-data of an image.
README 文档
README
php-exif-tools is a simple library for manipulate (read and write) with the EXIF meta-data of an image.
Example
Read meta-data:
use Taco\Tools\Exif; use SplFileInfo; (new Exif\ExifReader)->read(new SplFileInfo('file.jpeg')) == (object)[ 'mime' => 'image/jpeg', 'title' => 'Salut', 'datetime' => new DateTime('2019-02-23 21:20:00'), 'orientation' => 3, ];
Write meta-data:
use Taco\Tools\Exif; use SplFileInfo; (new Exif\ExifWrite(new SplFileInfo('file.jpeg'))->write([ ExifWriter::SECTION_TITLE => 'Salut', ]));
统计信息
- 总下载量: 4.26k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-06