图像未调整为指定大小

时间:2014-02-27 22:27:18

标签: php

我从DevelopPHP获得了这个自定义功能。由于某种原因,它没有将图像的大小调整为指定的大小。如果你看到下面的代码,我指的是图片的宽度($ wmax)和高度($ hmax)

下面是调用函数来调整图像大小的代码:

 $target_file = $location;
    $fileExt = 'jpg';
    $large_file = $_SERVER["DOCUMENT_ROOT"] . "/members/" . $id . "/large_" . $file_name . ".jpg";
    $wmax = 600;
    $hmax = 480;
    ak_img_resize($target_file, $large_file, $wmax, $hmax, $fileExt);

这是上述函数调用的函数:

<?php
// Adam Khoury PHP Image Function Library 1.0
// Function for resizing any jpg, gif, or png image files
function ak_img_resize($target, $newcopy, $w, $h, $ext) {
    list($w_orig, $h_orig) = getimagesize($target);
    $scale_ratio = $w_orig / $h_orig;
    if (($w / $h) > $scale_ratio) {
           $w = $h * $scale_ratio;

    } else {
           $h = $w / $scale_ratio;
    }
    $img = "";
    $ext = strtolower($ext);
    $img = imagecreatefromjpeg($target);
    $tci = imagecreatetruecolor($w, $h);
    // imagecopyresampled(dst_img, src_img, dst_x, dst_y, src_x, src_y, dst_w, dst_h, src_w, src_h)
    imagecopyresampled($tci, $img, 0, 0, 0, 0, $w, $h, $w_orig, $h_orig);
    imagejpeg($tci, $newcopy, 80);
}
?>

1 个答案:

答案 0 :(得分:1)

您的问题很模糊,但您应该注意,该功能并非旨在将图像重新调整为600 x 480.它旨在缩放图像以保持纵横比。换句话说,它只会完全匹配您指定的高度或宽度,但不能同时匹配两者。否则图像会扭曲或裁剪。