aboutsummaryrefslogblamecommitdiffhomepage
path: root/inc/3rdparty/libraries/MOBIClass/ImageHandler.php
blob: bcb48e9f165c90f7c3b0ad4969b0f651a2ca030c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                                         














                                                                                                         
                                   
                                        


                                                   
                                      

                                     
                 


         
<?php

class ImageHandler {
	/**
	 * Download an image
	 * @param string $url Url to the image
	 * @return false|string False if failed, else the data of the image (converted to grayscale jpeg)
	 */
	public static function DownloadImage($url){
		$data = Http::Request($url);
		$imgFile = @imagecreatefromstring($data);
		
		if($imgFile !== false){
			$result = self::CreateImage($imgFile);
			imagedestroy($imgFile);
			return $result;
		}
		return false;
	}
	/**
	 * Create an image
	 * @param resource $img Create an image created with createimagetruecolor
	 * @return false|string False if failed, else the data of the image (converted to grayscale jpeg)
	 */
	public static function CreateImage($img){
		try{
			imagefilter($img, IMG_FILTER_GRAYSCALE);
	
			ob_start();
			imagejpeg($img);
			$image = ob_get_contents();
			ob_end_clean();
			
			return $image;
		}catch(Exception $e){
			return false;
		}
	}
}
?>