本文整理汇总了PHP中Imagine\Image\ImagineInterface::setMetadataReader方法的典型用法代码示例。如果您正苦于以下问题:PHP ImagineInterface::setMetadataReader方法的具体用法?PHP ImagineInterface::setMetadataReader怎么用?PHP ImagineInterface::setMetadataReader使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Imagine\Image\ImagineInterface
的用法示例。
在下文中一共展示了ImagineInterface::setMetadataReader方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($image_types = array(), Router $router)
{
if (is_array($image_types)) {
$this->image_types = array_merge($this->image_types, $image_types);
}
$this->router = $router;
$this->imagine = extension_loaded('imagick') ? new Imagine() : new \Imagine\Gd\Imagine();
$this->imagine->setMetadataReader(new ExifMetadataReader());
}
示例2: getExifMetadata
/**
* Return EXIF metadata for a file by it's path
*
* @param $filePath
*
* @return array
*/
public function getExifMetadata($filePath)
{
try {
$exifReader = new \Imagine\Image\Metadata\ExifMetadataReader();
$this->_instance->setMetadataReader($exifReader);
$exif = $this->_instance->open($filePath)->metadata();
return $exif->toArray();
} catch (\Imagine\Exception\NotSupportedException $exception) {
Craft::log($exception->getMessage(), LogLevel::Error);
return array();
}
}