|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/.trash/public.bak.4/assets/theme/admin/texteditor/kcfinder/core/types/ |
Upload File : |
<?php
/** This file is part of KCFinder project
*
* @desc GD image detection class
* @package KCFinder
* @version 2.51
* @author Pavel Tzonkov <pavelc@users.sourceforge.net>
* @copyright 2010, 2011 KCFinder Project
* @license http://www.opensource.org/licenses/gpl-2.0.php GPLv2
* @license http://www.opensource.org/licenses/lgpl-2.1.php LGPLv2
* @link http://kcfinder.sunhater.com
*/
class type_img {
public function checkFile($file, array $config) {
$gd = new gd($file);
if ($gd->init_error)
return "Unknown image format/encoding.";
return true;
}
}
?>