在 PHP 中创建缩放缩略图
提供的代码片段成功裁剪给定尺寸内的图像。然而,对于较大的图像,它可能不会产生预期的结果。要解决此问题,需要首先调整图像大小,确保调整后图像的较小尺寸与缩略图的相应尺寸相匹配。
要创建比例缩略图,请按照以下步骤操作:
这里是更新的代码示例实现以下步骤:
<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中文网其他相关文章!