3

重複の可能性:
画像のサイズを固定サイズに変更する

次のphpコードを使用してサイズを変更し(幅)、画像を保存しています。コードはエラーなく動作していますが、画像のサイズが変更されていません。

<?php
$old_path = "users_images/".$name.".".$type;
    $new_path = "main_images/".$name.".".$type;
    $image_size = getimagesize($new_path);
    if($image_size['0'] > 700){
        $image_size['0'] = 700;
        }
        rename($old_path, $new_path);// save image

?>

基本的に、画像の幅が 700 より大きい場合は、700 に設定しますか? 私が間違っていることは何ですか?

4

3 に答える 3

14

この変数$image_size['0']は、実際の画像サイズへの参照ではありません。

寸法の比率を計算し、おそらくGD ライブラリで、画像のサイズを変更する適切な関数でサイズを変更する必要があります。

まず、画像をロードする必要があります。タイプは次のとおりです。

$image = imagecreatefromjpeg($new_path);
$image = imagecreatefromgif($new_path);
$image = imagecreatefrompng($new_path);

次に比率を計算します。

$ratio = 700 / imagesx($image); // 700 for the width you want...
                                // imagesx() to determine the current width

スケーリングされた高さを取得します。

$height = imagesy($image) * $ratio; // imagesy() to determine the current height

実際のサイズ変更を行います。

$new_image = imagecreatetruecolor($width, $height);
imagecopyresampled($new_image, $image, 0, 0, 0, 0, $width, $height, imagesx($image), imagesy($image));
$image = $new_image; // $image has now been replaced with the resized one.

画像のサイズを変更するための簡単なクラスを見つけました。リンクの腐敗を防ぐために、ここに再作成しました。

<?php

/*
* File: SimpleImage.php
* Author: Simon Jarvis
* Copyright: 2006 Simon Jarvis
* Date: 08/11/06
* Link: http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details:
* http://www.gnu.org/licenses/gpl.html
*
*/

class SimpleImage {

   var $image;
   var $image_type;

   function load($filename) {

      $image_info = getimagesize($filename);
      $this->image_type = $image_info[2];
      if( $this->image_type == IMAGETYPE_JPEG ) {

         $this->image = imagecreatefromjpeg($filename);
      } elseif( $this->image_type == IMAGETYPE_GIF ) {

         $this->image = imagecreatefromgif($filename);
      } elseif( $this->image_type == IMAGETYPE_PNG ) {

         $this->image = imagecreatefrompng($filename);
      }
   }
   function save($filename, $image_type=IMAGETYPE_JPEG, $compression=75, $permissions=null) {

      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image,$filename,$compression);
      } elseif( $image_type == IMAGETYPE_GIF ) {

         imagegif($this->image,$filename);
      } elseif( $image_type == IMAGETYPE_PNG ) {

         imagepng($this->image,$filename);
      }
      if( $permissions != null) {

         chmod($filename,$permissions);
      }
   }
   function output($image_type=IMAGETYPE_JPEG) {

      if( $image_type == IMAGETYPE_JPEG ) {
         imagejpeg($this->image);
      } elseif( $image_type == IMAGETYPE_GIF ) {

         imagegif($this->image);
      } elseif( $image_type == IMAGETYPE_PNG ) {

         imagepng($this->image);
      }
   }
   function getWidth() {

      return imagesx($this->image);
   }
   function getHeight() {

      return imagesy($this->image);
   }
   function resizeToHeight($height) {

      $ratio = $height / $this->getHeight();
      $width = $this->getWidth() * $ratio;
      $this->resize($width,$height);
   }

   function resizeToWidth($width) {
      $ratio = $width / $this->getWidth();
      $height = $this->getheight() * $ratio;
      $this->resize($width,$height);
   }

   function scale($scale) {
      $width = $this->getWidth() * $scale/100;
      $height = $this->getheight() * $scale/100;
      $this->resize($width,$height);
   }

   function resize($width,$height) {
      $new_image = imagecreatetruecolor($width, $height);
      imagecopyresampled($new_image, $this->image, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight());
      $this->image = $new_image;
   }      

}
?>
于 2012-06-26T22:15:02.803 に答える
3

画像のサイズを変更するのではなく、変数を設定しています。私はいくつかの古い関数を掘り起こしました。画像オブジェクト、保存パス、画像名、最大高さ、最大幅、および品質を渡す必要があります。これは最高の機能ではありませんが、仕事は完了です。

function resizeImage($imgObject, $savePath, $imgName, $imgMaxWidth, $imgMaxHeight, $imgQuality)
{
    $source = imagecreatefromjpeg($imgObject['tmp_name']);
    list($imgWidth, $imgHeight) = getimagesize($imgObject['tmp_name']);
    $imgAspectRatio = $imgWidth / $imgHeight;
    if ($imgMaxWidth / $imgMaxHeight > $imgAspectRatio)
    {
        $imgMaxWidth = $imgMaxHeight * $imgAspectRatio;
    }
    else
    {
        $imgMaxHeight = $imgMaxWidth / $imgAspectRatio;
    }
    $image_p = imagecreatetruecolor($imgMaxWidth, $imgMaxHeight);
    $image = imagecreatefromjpeg($imgObject['tmp_name']);
    imagecopyresampled($image_p, $source, 0, 0, 0, 0, $imgMaxWidth, $imgMaxHeight, $imgWidth, $imgHeight);
    imagejpeg($image_p, $savePath . $imgName, $imgQuality);
    unset($imgObject);
    unset($source);
    unset($image_p);
    unset($image);
}
于 2012-06-26T22:16:47.783 に答える
0

GD 拡張機能の一部であるimagecopyresampled関数を使用して、画像をコピー/移動する必要があります。

于 2012-06-26T22:14:44.820 に答える