コード例 #1
0
ファイル: GluImage.php プロジェクト: glukash/glu-image
 /**
  * extracting animated gif frames
  * @param  [type] $imgFilePath [description]
  * @return [type]              [description]
  */
 protected function _getAnimatedGif($imgFilePath)
 {
     return $this->gifFrameExtractor->extract($imgFilePath);
 }
コード例 #2
0
ファイル: ArchiverPclZip.php プロジェクト: easinewe/Avec2016
 /**
  * [extractTo description]
  *
  * @param string $pathto Path to extract to
  * @param mixed  $files  Optional files parameter
  *
  * @return [type]              [description]
  */
 public function extractTo($pathto, $files = null)
 {
     $this->pclzip->extract(PCLZIP_OPT_PATH, $pathto);
 }