ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
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);
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}
$size
Definition: RandomTest.php:84
$filename
Definition: buildRTE.php:89
An exception for terminatinating execution or to throw for unit testing.
static _isCurlExtensionLoaded()
Check if curl extension is loaded.
Image utility class.
static getImageSize($a_location)
Get image size from location.
static getDataDir()
get data directory (outside webspace)
static makeDirParents($a_dir)
Create a new directory and all parent directories.