Вход Регистрация
Файл: includes/graphic.inc.php
Строк: 98
<?php
/******************************************************************************/
//                                                                            //
//                             InstantCMS v1.10                               //
//                        http://www.instantcms.ru/                           //
//                                                                            //
//                   written by InstantCMS Team, 2007-2012                    //
//                produced by InstantSoft, (www.instantsoft.ru)               //
//                                                                            //
//                        LICENSED BY GNU/GPL v2                              //
//                                                                            //
/******************************************************************************/

if(!defined('VALID_CMS')) { die('ACCESS DENIED'); }

function 
img_add_watermark($src){

  
$size getimagesize($src);
  if (
$size === false) return false;

  
$format mb_strtolower(mb_substr($size['mime'], mb_strpos($size['mime'], '/')+1));
  
$icfunc "imagecreatefrom" $format;
  if (!
function_exists($icfunc)) return false;

  
$isrc $icfunc($src);

  
img_watermark($isrc$size[0], $size[1]);

   
// вывод картинки и очистка памяти
  
imagejpeg($isrc,$src,80);

}

function 
img_watermark(&$img$w$h){

    
$inConf cmsConfig::getInstance();

    if (!
$inConf->wmark) { return; }

    
$wm_file =     PATH.'/images/'.$inConf->wmark;

    if (!
file_exists($wm_file)) { return; }

    
$size getimagesize($wm_file);

    
$wm imagecreatefrompng($wm_file);

    
$wm_w $size[0];
    
$wm_h $size[1];

    
$wm_x $w $wm_w;
    
$wm_y $h $wm_h;

    
imagecopyresampled($img$wm$wm_x$wm_y00$wm_w$wm_h$wm_w$wm_h);

}

/***********************************************************************************
Функция img_resize(): генерация thumbnails
Параметры:
  $src             - имя исходного файла
  $dest            - имя генерируемого файла
  $width, $height  - ширина и высота генерируемого изображения, в пикселях
Необязательные параметры:
  $rgb             - цвет фона, по умолчанию - белый
  $quality         - качество генерируемого JPEG, по умолчанию - максимальное (100)
***********************************************************************************/
function img_resize($src$dest$maxwidth$maxheight=160$is_square=false$watermark=false$rgb=0xFFFFFF$quality=90){

  if (!
file_exists($src)) return false;

  
$upload_dir dirname($dest);
  if (!
is_writable($upload_dir)){ @chmod($upload_dir0777); }

  
$size getimagesize($src);
  if (
$size === false) return false;

  
$new_width   $size[0];
  
$new_height  $size[1];

  
$formats = array(
       
1  => 'gif',
       
2  => 'jpeg',
       
3  => 'png',
       
6  => 'wbmp',
       
15 => 'wbmp'
     
);
  
$format = @$formats[$size[2]];
  
$icfunc "imagecreatefrom" $format;
  if (!
function_exists($icfunc)) return false;

  
$isrc $icfunc($src);

  if ((
$new_height <= $maxheight) && ($new_width <= $maxwidth)){
      if (
$watermark) {
            
img_watermark($isrc$new_width$new_height);
            
imagejpeg($isrc,$dest,$quality);
      } else {
            @
copy($src$dest);
      }
      return 
true;
  }

  if(
$is_square){

      
$idest imagecreatetruecolor($maxwidth,$maxwidth);
      
imagefill($idest00$rgb);
      
// вырезаем квадратную серединку по x, если фото горизонтальное
      
if ($new_width>$new_height)
      
imagecopyresampled($idest$isrc00round((max($new_width,$new_height)-min($new_width,$new_height))/2), 0$maxwidth$maxwidthmin($new_width,$new_height), min($new_width,$new_height));
      
// вырезаем квадратную верхушку по y,
      
if ($new_width<$new_height)
      
imagecopyresampled($idest$isrc0000$maxwidth$maxwidthmin($new_width,$new_height), min($new_width,$new_height));
      
// квадратная картинка масштабируется без вырезок
      
if ($new_width==$new_height)
       
imagecopyresampled($idest$isrc0000$maxwidth$maxwidth$new_width$new_width);

  } else {

        if(
$new_width>$maxwidth){

            
$wscale $maxwidth/$new_width;
            
$new_width  *= $wscale;
            
$new_height *= $wscale;

        }
        if(
$new_height>$maxheight){

            
$hscale $maxheight/$new_height;
            
$new_width  *= $hscale;
            
$new_height *= $hscale;

        }

        
$idest imagecreatetruecolor($new_width$new_height);
        
imagefill($idest00$rgb);
        
imagecopyresampled($idest$isrc0000$new_width$new_height$size[0], $size[1]);

  }

  if (
$watermark) { img_watermark($idest$new_width$new_height); }

  
imageinterlace($idest,1);

  
// вывод картинки и очистка памяти
  
imagejpeg($idest,$dest,$quality);
  
imagedestroy($isrc);
  
imagedestroy($idest);

  return 
true;

}
?>
Онлайн: 2
Реклама