Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/image-processing/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
PHP按比例调整图像大小,使其更大_Php_Image Processing_Resize_Gd_Scale - Fatal编程技术网

PHP按比例调整图像大小,使其更大

PHP按比例调整图像大小,使其更大,php,image-processing,resize,gd,scale,Php,Image Processing,Resize,Gd,Scale,我目前正在编写一个脚本,在一个移动应用程序上显示网站的缩略图,我的“视网膜显示”有问题。如果原始图像足够大,我将以所需大小的两倍显示缩略图,如果不是,我将以所需大小显示缩略图。现在,我的函数检查它是否可以按比例调整大小,如果不能,我将其调整为“最小宽度”或“最小高度”,并从中心进行裁剪 问题是:如果它检测到图像无法以两倍的大小显示,则“放大”裁剪的大小,直到达到原始大小的限制,我无法找到正确的缩放方法。(我的主要问题是我的数学不是很好:P) 对于更简单的讲座: 这是图像的原始大小:600 x

我目前正在编写一个脚本,在一个移动应用程序上显示网站的缩略图,我的“视网膜显示”有问题。如果原始图像足够大,我将以所需大小的两倍显示缩略图,如果不是,我将以所需大小显示缩略图。现在,我的函数检查它是否可以按比例调整大小,如果不能,我将其调整为“最小宽度”或“最小高度”,并从中心进行裁剪

问题是:如果它检测到图像无法以两倍的大小显示,则“放大”裁剪的大小,直到达到原始大小的限制,我无法找到正确的缩放方法。(我的主要问题是我的数学不是很好:P)

对于更简单的讲座:

  • 这是图像的原始大小:600 x 301
  • 这是所需/裁剪的尺寸:320 x 180
  • 这是我想要的尺寸:535x301。我是从Photoshop上得到的,它是将320x180放大的结果,直到找到原始大小的限制

PS:我知道GD,所以我只需要公式来计算尺寸

缩小的算法也可以放大。这是未经测试的代码,它只设计为按比例缩小,但是如果您删除“按比例缩小”测试,它可能会为您带来好处

<?php // RAY_image_resize_and_crop.php
error_reporting(E_ALL);


// RESIZE AN IMAGE PROPORTIONALLY AND CROP TO THE CENTER


function resize_and_crop($original_image_url, $thumb_image_url, $thumb_w, $thumb_h, $quality=75)
{
    // ACQUIRE THE ORIGINAL IMAGE: http://php.net/manual/en/function.imagecreatefromjpeg.php
    $original = imagecreatefromjpeg($original_image_url);
    if (!$original) return FALSE;

    // GET ORIGINAL IMAGE DIMENSIONS
    list($original_w, $original_h) = getimagesize($original_image_url);

    // RESIZE IMAGE AND PRESERVE PROPORTIONS
    $thumb_w_resize = $thumb_w;
    $thumb_h_resize = $thumb_h;
    if ($original_w > $original_h)
    {
        $thumb_h_ratio  = $thumb_h / $original_h;
        $thumb_w_resize = (int)round($original_w * $thumb_h_ratio);
    }
    else
    {
        $thumb_w_ratio  = $thumb_w / $original_w;
        $thumb_h_resize = (int)round($original_h * $thumb_w_ratio);
    }
    if ($thumb_w_resize < $thumb_w)
    {
        $thumb_h_ratio  = $thumb_w / $thumb_w_resize;
        $thumb_h_resize = (int)round($thumb_h * $thumb_h_ratio);
        $thumb_w_resize = $thumb_w;
    }

    // CREATE THE PROPORTIONAL IMAGE RESOURCE
    $thumb = imagecreatetruecolor($thumb_w_resize, $thumb_h_resize);
    if (!imagecopyresampled($thumb, $original, 0,0,0,0, $thumb_w_resize, $thumb_h_resize, $original_w, $original_h)) return FALSE;

    // ACTIVATE THIS TO STORE THE INTERMEDIATE IMAGE
    // imagejpeg($thumb, 'RAY_temp_' . $thumb_w_resize . 'x' . $thumb_h_resize . '.jpg', 100);

    // CREATE THE CENTERED CROPPED IMAGE TO THE SPECIFIED DIMENSIONS
    $final = imagecreatetruecolor($thumb_w, $thumb_h);

    $thumb_w_offset = 0;
    $thumb_h_offset = 0;
    if ($thumb_w < $thumb_w_resize)
    {
        $thumb_w_offset = (int)round(($thumb_w_resize - $thumb_w) / 2);
    }
    else
    {
        $thumb_h_offset = (int)round(($thumb_h_resize - $thumb_h) / 2);
    }

    if (!imagecopy($final, $thumb, 0,0, $thumb_w_offset, $thumb_h_offset, $thumb_w_resize, $thumb_h_resize)) return FALSE;

    // STORE THE FINAL IMAGE - WILL OVERWRITE $thumb_image_url
    if (!imagejpeg($final, $thumb_image_url, $quality)) return FALSE;
    return TRUE;
}


// USE CASE
echo '<a target="_blank" href="RAY_orig_600x374.jpg">Original 600x374</a><br/>';

resize_and_crop('RAY_orig_600x374.jpg', 'RAY_temp_100x100.jpg', 100, 100);
echo '<a target="_blank" href="RAY_temp_100x100.jpg">100x100</a><br/>';

resize_and_crop('RAY_orig_600x374.jpg', 'RAY_temp_200x100.jpg', 200, 100);
echo '<a target="_blank" href="RAY_temp_200x100.jpg">200x100</a><br/>';

resize_and_crop('RAY_orig_600x374.jpg', 'RAY_temp_200x300.jpg', 200, 300);
echo '<a target="_blank" href="RAY_temp_200x300.jpg">200x300</a><br/>';
(代表OP发布):

多亏了Ray Paseur,我获得了以下功能:

function getAppropriateDimensionsForRetina($originalWidth,$originalHeight,$width,$height){
    $newWidth = $originalWidth;
    $newHeigth = $originalHeight;
    if($originalWidth > $originalHeight){
        $heightRatio = $originalHeight / $height;
        $newWidth = (int)floor($width * $heightRatio);
    }else{
        $widthRatio = $originalWidth / $width;
        $newHeigth = (int)floor($height * $widthRatio);
    }
    return array('width' => $newWidth,'height' => $newHeigth);
} 

使用320/180的目标纵横比。所以如果你知道你的身高是301,那么你的宽度是(301*(320/180))。谢谢,但我已经用了@RayPaseur answer实际上,。。。它可能没有任何缩放测试。如果您有问题,请查看并尝试发回。谢谢,它很有效,我根据您发布的函数创建了一个函数,我会将它添加到问题中。再次感谢!