创建缩略图:维护图像比例
在您的查询中,您的目标是从上传的图像创建缩略图,确保其保留其外观比率。让我们详细讨论一下这个问题:
长宽比的重要性
保持图像的长宽比对于保持其原始形状和防止变形至关重要。如果不保持比例,缩略图可能会被挤压或拉伸,从而损害图像的视觉完整性。
使用 Imagick 生成缩略图
生成尊重图像外观的缩略图比,考虑利用 Imagick 库,它提供高级图像处理功能。下面是一个示例函数:
/** * * Generate Thumbnail using Imagick class * * @param string $img * @param string $width * @param string $height * @param int $quality * @return boolean on true * @throws Exception * @throws ImagickException */ function generateThumbnail($img, $width, $height, $quality = 90) { if (is_file($img)) { $imagick = new Imagick(realpath($img)); $imagick->setImageFormat('jpeg'); $imagick->setImageCompression(Imagick::COMPRESSION_JPEG); $imagick->setImageCompressionQuality($quality); $imagick->thumbnailImage($width, $height, false, false); $filename_no_ext = reset(explode('.', $img)); if (file_put_contents($filename_no_ext . '_thumb' . '.jpg', $imagick) === false) { throw new Exception("Could not put contents."); } return true; } else { throw new Exception("No valid image provided with {$img}."); } }
此函数使用thumbnailImage 方法生成具有指定宽度和高度的缩略图,同时保留原始宽高比。
替代缩略图生成
或者,您可以使用 GD 库来创建缩略图。这种方法需要更多的手动计算,因为您需要确定适当的尺寸来保持图像的宽高比。
以下示例函数演示了如何使用 GD 库创建缩略图:
function makeThumbnails($updir, $img, $id) { $thumbnail_width = 134; $thumbnail_height = 189; $thumb_beforeword = "thumb"; $arr_image_details = getimagesize("$updir" . $id . '_' . "$img"); // pass id to thumb name $original_width = $arr_image_details[0]; $original_height = $arr_image_details[1]; if ($original_width > $original_height) { $new_width = $thumbnail_width; $new_height = intval($original_height * $new_width / $original_width); } else { $new_height = $thumbnail_height; $new_width = intval($original_width * $new_height / $original_height); } $dest_x = intval(($thumbnail_width - $new_width) / 2); $dest_y = intval(($thumbnail_height - $new_height) / 2); if ($arr_image_details[2] == IMAGETYPE_GIF) { $imgt = "ImageGIF"; $imgcreatefrom = "ImageCreateFromGIF"; } if ($arr_image_details[2] == IMAGETYPE_JPEG) { $imgt = "ImageJPEG"; $imgcreatefrom = "ImageCreateFromJPEG"; } if ($arr_image_details[2] == IMAGETYPE_PNG) { $imgt = "ImagePNG"; $imgcreatefrom = "ImageCreateFromPNG"; } if ($imgt) { $old_image = $imgcreatefrom("$updir" . $id . '_' . "$img"); $new_image = imagecreatetruecolor($thumbnail_width, $thumbnail_height); imagecopyresized($new_image, $old_image, $dest_x, $dest_y, 0, 0, $new_width, $new_height, $original_width, $original_height); $imgt($new_image, "$updir" . $id . '_' . "$thumb_beforeword" . "$img"); } }
使用这些功能中的任何一个都将为您提供保留原始图像长宽比的缩略图。
以上是创建缩略图时如何保持图像比例?的详细内容。更多信息请关注PHP中文网其他相关文章!