ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilMediaImageUtil.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2014 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
13 {
20  public static function getImageSize($a_location)
21  {
22  if (substr($a_location, 0, 4) == "http") {
23  include_once("./Services/WebServices/Curl/classes/class.ilCurlConnection.php");
25  $dir = ilUtil::getDataDir() . "/temp/mob/remote_img";
27  $filename = $dir . "/" . uniqid();
28  $file = fopen($filename, "w");
29  $c = new ilCurlConnection($a_location);
30  $c->init();
31  $c->setOpt(CURLOPT_SSL_VERIFYHOST, 0);
32  $c->setOpt(CURLOPT_SSL_VERIFYPEER, 0);
33  $c->setOpt(CURLOPT_MAXREDIRS, 3);
34  $c->setOpt(CURLOPT_HEADER, 0);
35  $c->setOpt(CURLOPT_RETURNTRANSFER, 1);
36  $c->setOpt(CURLOPT_FILE, $file);
37  try {
38  $c->exec();
39  $size = @getimagesize($filename);
40  } catch (ilCurlConnectionException $e) {
41  $size = false;
42  }
43  $c->close();
44  fclose($file);
45  unlink($filename);
46  } else {
47  $size = @getimagesize($a_location);
48  }
49  } else {
50  $size = @getimagesize($a_location);
51  }
52  return $size;
53  }
54 }
static makeDirParents($a_dir)
Create a new directory and all parent directories.
$size
Definition: RandomTest.php:84
static getImageSize($a_location)
Get image size from location.
Image utility class.
static _isCurlExtensionLoaded()
Check if curl extension is loaded.
$filename
Definition: buildRTE.php:89
static getDataDir()
get data directory (outside webspace)