PHP-调整大小并保存图像? [英] php - resize and save an image?

查看:83
本文介绍了PHP-调整大小并保存图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
将图片调整为固定大小

Possible Duplicate:
Resize a picture to a fixed size

我正在使用以下php代码来调整大小(宽度)并保存图像,该代码没有错误,但是图像没有被调整大小.

I am using the following php code to resize (the width) and save an image, the code is working no error but the image is not getting resized.

<?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?我在做什么错了?

basically if the image width is grater than 700 I want to set it to 700 ? what I am doing wrong ?

推荐答案

变量$image_size['0']不是对实际图像尺寸的引用.

The variable $image_size['0'] is not a reference to the actual image size.

您需要计算尺寸的比例,然后使用适当的功能来调整图像的大小,该功能可能会在

You'll need to calculate the ratio of the dimensions, then resize it with an appropriate function that resizes images, probably in the GD library.

首先,您必须加载图像.我让您选择类型:

First, you'll have to load the image. I'll let you choose what the type is:

$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.


我找到了


I found a simple class for resizing images. To protect from link rotting, I have recreated it here:

<?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;
   }      

}
?>

这篇关于PHP-调整大小并保存图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆