使用PHP和GD2调整图像大小。我得到了图像和黑色背景

时间:2010-10-03 17:22:01

标签: php gd gd2

我正在创建一个动态类来生成各种图像。

ImagesUtils.php

<?php
class ImagesUtils
{
    private $nombre_imagen = null;
    private $imagen = null;
    private $extension = null;
    private $directorio = null;

    private $width = null;
    private $height = null;
    private $tipo = null;

    private $final_width = null;
    private $final_height = null;
    private $nuevo_nombre = null;
    private $nuevo_directorio = null;

    public function __construct($imagen, $directorio = '')
    {
        $this->directorio = realpath("..".DS."data".DS."storage".DS."files".DS.$directorio);

        $this->imagen = $this->directorio.DS.$imagen;
        $this->nombre_imagen = $imagen;

        $this->extension = substr($imagen, strrpos($imagen, '.') + 1, strlen($imagen));

        $propiedades = getimagesize($this->imagen);

        $this->width = $propiedades["0"];
        $this->height = $propiedades["1"];
        $this->tipo = $propiedades["2"];
    }

    public function Resize($width = null, $height = null, $proporcion = true)
    {
        $this->final_width = $width;
        $this->final_height = $height;

        if(true == $proporcion)
            self::proporcion($width, $height);

        $imagen = imagecreatefromjpeg($this->imagen);

        $nueva_imagen = imagecreatetruecolor($this->final_width, $this->final_height);

        imagecopyresampled($nueva_imagen, $imagen, 0, 0, 0, 0, $this->final_width, $this->final_height, $this->width, $this->height);

        return imagejpeg($image, $this->nueva_imagen);
    }
}
?>

我怎么称呼:

$procesar_imagen = new ImagesUtils($imagen["nombre"]);
$procesar_imagen->Resize(640, 480);

宽度此代码工作正常......但如果我使用此代码:

$procesar_imagen->Resize(300, 300);

我生成的最终图片如下:http://i51.tinypic.com/htwx79.jpg

输入图片为:http://i51.tinypic.com/15n9ifc.jpg

我不知道如何解决它...我的proporcion()函数从照片的纵横比返回新的高度和宽度...我检查过,值是正确的,返回的宽度是300(并且最终图像宽度为300 ......但计算黑色区域。)

1 个答案:

答案 0 :(得分:1)

我知道您正在尝试编写自己的代码,但您可能需要查看此代码:http://www.white-hat-web-design.co.uk/articles/php-image-resizing.php