当前位置: 首页>>代码示例>>PHP>>正文


PHP ImagineInterface::setMetadataReader方法代码示例

本文整理汇总了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());
 }
开发者ID:vlatosev,项目名称:filebundle,代码行数:9,代码来源:ImageProcessor.php

示例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();
     }
 }
开发者ID:codeforamerica,项目名称:oakland-beta,代码行数:19,代码来源:Image.php


注:本文中的Imagine\Image\ImagineInterface::setMetadataReader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。