нужна помощь, чтобы изменить размер изображения в php - PullRequest
0 голосов
/ 20 сентября 2011

У меня есть немного кода, который генерирует миниатюры из загруженного изображения.Единственная проблема заключается в том, что он обрезает портретные изображения, вместо того, чтобы изменять размер портретного изображения в соответствии с высотой миниатюры, пейзажные изображения в порядке.Мне было интересно, может ли кто-нибудь помочь мне изменить код, чтобы он правильно разместил портретные изображения внутри эскиза?(если это имеет смысл?)

Вот код:

$setSize        = 150;
$setHSize       = 113;
$jpeg_quality   = 75;

list($width, $height, $type, $attr) = getimagesize($origPath);

$newW = $setSize;
$newH = round( $height * ( $setSize / $width ) );

$img_r = imagecreatefromjpeg($origPath) or notfound();
$dst_r = ImageCreateTrueColor( $setSize, $setHSize );
$heightOffset = round( ($setHSize-$newH)/2 );

$white = imagecolorallocate($dst_r, 255, 255, 255);
imagefilledrectangle($dst_r, 0, 0, $setSize, $setHSize, $white);
imagecopyresampled($dst_r, $img_r, 0, $heightOffset, 0, 0, $newW, $newH, $width, $height);

header("Content-type: image/jpeg");
imagejpeg($dst_r, $thbPath, $jpeg_quality);

Я просто не до конца понимаю, как php создает изображения, поэтому любая помощь будет принята:)

Ответы [ 3 ]

3 голосов
/ 20 сентября 2011

Способ вычисления $ newW и $ newH неверен для того, что вы хотите. Вы отдаете предпочтение ширине, поэтому большинство пейзажных изображений будут выглядеть хорошо, но портрет будет обрезан. Вместо этого попробуйте следующее:

// assume landscape and see how things look
$newW = $setSize;
$newH = round( $height * ( $setSize / $width ) );
if ($newH > $setHSize) {
    // portrait image
    $newH = $setHSize;
    $newW = round( $width * ( $setHSize / $height ) );
}

Надеюсь, это поможет!

1 голос
/ 20 сентября 2011

Надеюсь, это поможет.

<?php 
define('DOCROOT', $_SERVER['DOCUMENT_ROOT']);  
include_once(DOCROOT."/dbc.php");

// ********************** |Изменение размера по высоте

$photo_height = 350;

// ********************** |Получить файл с поста

$file = $_FILES['file'];
$path_thumbs = (DOCROOT."/gallery/"); 
$path_big = (DOCROOT."/trash/"); 

// ********************** |Проверьте разрешение

if (!is_writeable($path_thumbs)){
   die ("Error: The directory <b>($path_thumbs)</b> is NOT writable");
}
if (!is_writeable($path_big)){
    die ("Error: The directory <b>($path_big)</b> is NOT writable");
}

// ********************** |Убедитесь, что у вас есть файл

 if (isset($file)){

   $file_type = $_FILES['file']['type'];
   $file_name = $_FILES['file']['name'];
   $file_size = $_FILES['file']['size'];
   $file_tmp = $_FILES['file']['tmp_name'];

   $getExt = explode ('.', $file_name);
   $file_ext = $getExt[count($getExt)-1];

// ********************** |Создать новое имя

   $rand_name = md5(time());
   $rand_name= rand(0,999999999);

// ********************** |Посмотрите, какой файл у нас есть

if($file_size){
  if($file_type == "image/pjpeg" || $file_type == "image/jpeg"){
  $new_img = imagecreatefromjpeg($file_tmp);
  }
  elseif($file_type == "image/x-png" || $file_type == "image/png"){
  $new_img = imagecreatefrompng($file_tmp);
  }
  elseif($file_type == "image/gif"){
  $new_img = imagecreatefromgif($file_tmp);
  }

// ********************** |Получи высоту и ширину

  list($width, $height) = getimagesize($file_tmp);
       $imgratio=$height/$width;

 if ($photo_height >= $height){
 //*********** Dont resize if the image is smaller then $photo_height = 350;
 $newwidth = $width;
 $newheight = $height;
 }
 elseif ($imgratio>1){
 $newheight = $photo_height;
 $newwidth = $photo_height/$imgratio;
 }
 else{
 $newwidth = $photo_height;
 $newheight = $photo_height*$imgratio;
 }

 if (function_exists(imagecreatetruecolor)){ $resized_img = imagecreatetruecolor($newwidth,$newheight); }
else{ die("Error: Please make sure you have GD library ver 2+");
}

imagecopyresampled($resized_img, $new_img, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

ImageJpeg ($resized_img,"$path_thumbs/$rand_name.$file_ext",'100');
ImageDestroy ($resized_img);
ImageDestroy ($new_img);
}
move_uploaded_file ($file_tmp, "$path_big/$rand_name.$file_ext");
$newimage = "$rand_name.$file_ext";
}
else { 
echo "Sorry, there was a problem, Please try again.\n\n";
}
0 голосов
/ 20 сентября 2011

adaptiveResizeImage

или

adaptiveCropThumblanil

в Imagick может помочь вам

...