Add feature - save original image. Allow create empty instance of ImageCollection.
This commit is contained in:
@ -2,12 +2,19 @@
|
||||
|
||||
abstract class Upload
|
||||
{
|
||||
const PATH_ROOT = '/var/www/10ballov/face/htdocs';
|
||||
const PATH_WEB_ROOT = '/var/www/10ballov/face/htdocs';
|
||||
|
||||
protected static $dir_image_cache = '/media/cache/images';
|
||||
|
||||
protected static $dir_image_originals = '/media/original';
|
||||
|
||||
const SAVE_ORIGINAL_IMAGE = 1;
|
||||
|
||||
public static function getGreagwarImage($file_path)
|
||||
{
|
||||
require_once PATH . '/lib/GreagwarImage/GreagwarImage.php';
|
||||
$greagwar_image = new GreagwarImage($file_path);
|
||||
$greagwar_image->setCacheDir(self::PATH_ROOT . '/media/cache/images');
|
||||
$greagwar_image->setCacheDir(self::PATH_WEB_ROOT . self::$dir_image_cache);
|
||||
return $greagwar_image;
|
||||
}
|
||||
/**
|
||||
@ -25,7 +32,19 @@ abstract class Upload
|
||||
Image::checkSubClass($class);
|
||||
$image = new $class;
|
||||
$image->original_filename = $file['name'];
|
||||
|
||||
$greagwar_image = self::getGreagwarImage($file['tmp_name']);
|
||||
if (self::SAVE_ORIGINAL_IMAGE) {
|
||||
$path_for_save_original = self::PATH_WEB_ROOT . self::$dir_image_originals . DIRECTORY_SEPARATOR . $class;
|
||||
if (!file_exists($path_for_save_original)) {
|
||||
mkdir($path_for_save_original);
|
||||
chmod($path_for_save_original, 0777);
|
||||
}
|
||||
$basename = $image->original_filename . '_' . md5(uniqid($image->original_filename, true));
|
||||
$extension = mb_substr($image->original_filename, mb_strrpos($image->original_filename, '.') + 1);
|
||||
$extension = mb_strtolower($extension);
|
||||
copy($file['tmp_name'], $path_for_save_original . DIRECTORY_SEPARATOR . $basename . '.' . $extension);
|
||||
}
|
||||
self::saveImage($image, $greagwar_image);
|
||||
if ($force_create_variants) {
|
||||
$sizes = $image->getSizes();
|
||||
@ -38,7 +57,7 @@ abstract class Upload
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $image ImageVariant
|
||||
* @param $image ImageVariant|Image
|
||||
* @param $greagwar_image GreagwarImage
|
||||
* @param null $width
|
||||
* @param null $height
|
||||
@ -54,7 +73,7 @@ abstract class Upload
|
||||
$file_path = $greagwar_image->cacheFile($image->type, 87, true);
|
||||
$image->size = filesize($file_path);
|
||||
$path_parts = pathinfo($file_path);
|
||||
$image->path = preg_replace('#^' . self::PATH_ROOT . '/#', '', $path_parts['dirname']);
|
||||
$image->path = preg_replace('#^' . self::PATH_WEB_ROOT . '/#', '', $path_parts['dirname']);
|
||||
$image->filename = $path_parts['basename'];
|
||||
$image->width = $greagwar_image->width();
|
||||
$image->height = $greagwar_image->height();
|
||||
|
Reference in New Issue
Block a user