如何在 PHP 中为大图像创建比例缩略图?

DDD
发布: 2024-11-05 19:29:02
原创
681 人浏览过

How to Create Proportional Thumbnails in PHP for Large Images?

在 PHP 中创建缩放缩略图

提供的代码片段成功裁剪给定尺寸内的图像。然而,对于较大的图像,它可能不会产生预期的结果。要解决此问题,需要首先调整图像大小,确保调整后图像的较小尺寸与缩略图的相应尺寸相匹配。

要创建比例缩略图,请按照以下步骤操作:

  1. 确定源图像和所需缩略图的宽高比。
  2. 比较宽高比。如果源图像更宽,则相应地计算新的高度和宽度。相反,如果缩略图较宽,则计算新的宽度和高度。
  3. 使用计算出的尺寸创建新图像。
  4. 执行重采样操作以调整源图像的大小以适应新尺寸同时保持宽高比。
  5. 将调整大小的图像裁剪为指定的缩略图尺寸。
  6. 将裁剪后的图像另存为缩略图。

这里是更新的代码示例实现以下步骤:

<code class="php">$image = imagecreatefromjpeg($_GET['src']);
$filename = 'images/cropped_whatever.jpg';

$thumb_width = 200;
$thumb_height = 150;

$width = imagesx($image);
$height = imagesy($image);

$original_aspect = $width / $height;
$thumb_aspect = $thumb_width / $thumb_height;

if ( $original_aspect >= $thumb_aspect )
{
   // If image is wider than thumbnail (in aspect ratio sense)
   $new_height = $thumb_height;
   $new_width = $width / ($height / $thumb_height);
}
else
{
   // If the thumbnail is wider than the image
   $new_width = $thumb_width;
   $new_height = $height / ($width / $thumb_width);
}

$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );

// Resize and crop
imagecopyresampled($thumb,
                   $image,
                   0 - ($new_width - $thumb_width) / 2, // Center the image horizontally
                   0 - ($new_height - $thumb_height) / 2, // Center the image vertically
                   0, 0,
                   $new_width, $new_height,
                   $width, $height);
imagejpeg($thumb, $filename, 80);</code>
登录后复制

通过将图像大小调整合并到缩略图生成过程中,可以创建独立于原始图像大小的比例良好的缩略图。

以上是如何在 PHP 中为大图像创建比例缩略图?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!