X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FImages.php;h=82f3a9a75e010fa7f6d10ce023800d7c5b7ef39f;hb=de203388ca0b5f0c13912316371c527a340ddbb8;hp=911e143f7751de56d683340a4613d9f8a2a6cfcb;hpb=af14849daa6ab7ef1fdf5d692bb0a54370793a3d;p=Pman.Core diff --git a/DataObjects/Images.php b/DataObjects/Images.php index 911e143f..82f3a9a7 100644 --- a/DataObjects/Images.php +++ b/DataObjects/Images.php @@ -29,6 +29,18 @@ class Pman_Core_DataObjects_Images extends DB_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + function applyFilters($q, $au, $roo) + { + $tn = $this->tableName(); + + if(!empty($q['search']['filename'])){ + $this->whereAdd(" + $tn.filename LIKE '%{$this->escape($q['search']['filename'])}%' OR $tn.title LIKE '%{$this->escape($q['search']['filename'])}%' + "); + } + + + } function checkPerm($lvl, $au) { @@ -118,9 +130,10 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $this->mimetype = $y->fromFilename($filename); } - $this->mimetype= strtolower($this->mimetype); + $this->mimetype = strtolower($this->mimetype); - if (array_shift(explode('/', $this->mimetype)) == 'image') { + $mta = explode('/', $this->mimetype); + if (array_shift($mta) == 'image') { $imgs = @getimagesize($file); @@ -196,7 +209,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject * * */ - function beforeDelete() + function beforeDelete($dependants_array, $roo) { $opts = HTML_FlexyFramework::get()->Pman; @@ -212,7 +225,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject if (file_exists($deldir . '/'. $b)) { unlink($fn); } else { - rename($fn, $deldir .'/',$b); + rename($fn, $deldir .'/'. $b); } @@ -230,8 +243,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject unlink($d. '/'. $fn); continue; } - rename($d. '/'. $fn, $deldir .'/',$fn); - + rename($d. '/'. $fn, $deldir .'/'. $fn); } } @@ -743,7 +755,8 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $ext = $y->toExt(trim((string) $this->mimetype )); - if(array_pop(explode('.', $this->filename)) != $ext){ + $explode_filename = explode('.', $this->filename); + if(array_pop($explode_filename) != $ext){ $this->filename = $this->filename .'.'. $ext; } @@ -760,7 +773,9 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $this->mimetype= strtolower($this->mimetype); - if (array_shift(explode('/', $this->mimetype)) == 'image') { + $explode_mimetype = explode('/', $this->mimetype); + + if (array_shift($explode_mimetype) == 'image') { $imgs = @getimagesize($data); @@ -801,7 +816,7 @@ class Pman_Core_DataObjects_Images extends DB_DataObject } - function toBase64() + function toBase64($rotate = false, $scaleWidth = 0, $scaleHeight = 0) { if(!preg_match('/^image\//', $this->mimetype)){ return false; @@ -815,6 +830,50 @@ class Pman_Core_DataObjects_Images extends DB_DataObject $data = file_get_contents($file); +// if(!empty($scaleWidth) || !empty($scaleHeight)){ +// +// $width = $this->width; +// $height = $this->height; +// +// if(!empty($scaleWidth)){ +// $width = $scaleWidth; +// +// if(empty($scaleHeight)){ +// $height = $this->height * $scaleWidth / $this->width; +// } +// } +// +// +// +// if(!empty($scaleHeight)){ +// $height = $scaleHeight; +// +// if(empty($scaleWidth)){ +// $width = $this->width * $scaleHeight / $this->height; +// } +// } +// +// $im = imagecreatefromstring($data); +// +// if (($scaled = imagescale($im, $width, $height)) != false) { +// ob_start(); +// imagejpeg($scaled); +// $data = ob_get_contents(); +// ob_end_clean(); +// imagedestroy($im); +// imagedestroy($scaled); +// } +// +// } + + if(!empty($scaleWidth) || !empty($scaleHeight)){ + $data = $this->scale($scaleWidth, $scaleHeight); + } + + if($rotate){ + $data = $this->rotate($data); + } + $base64 = 'data:' . $this->mimetype . ';base64,' . base64_encode($data); return $base64; @@ -850,4 +909,32 @@ class Pman_Core_DataObjects_Images extends DB_DataObject return $page; } + function rotate($imageBlob = false) + { + if(empty($imageBlob)){ + $imagick = new Imagick($this->getStoreName()); + } else { + $imagick = new Imagick(); + $imagick->readImageBlob($imageBlob); + } + + $orientation = $imagick->getImageOrientation(); + print_R($orientation);exit; + switch($orientation) { + case Imagick::ORIENTATION_BOTTOMRIGHT: + $imagick->rotateimage(new ImagickPixel('#00000000'), 180); // rotate 180 degrees + break; + + case Imagick::ORIENTATION_RIGHTTOP: + $imagick->rotateimage(new ImagickPixel('#00000000'), 90); // rotate 90 degrees CW + break; + + case Imagick::ORIENTATION_LEFTBOTTOM: + $imagick->rotateimage(new ImagickPixel('#00000000'), -90); // rotate 90 degrees CCW + break; + } + + return $imagick->getImageBlob(); + } + }