在PHP 中裁剪圖像:調整大小以獲得更大的圖像
提供的程式碼可以有效地裁剪圖像,但可能會難以處理更大的影像。為了解決這個問題,我們可以「縮小」圖像。目標是在裁剪之前保持影像尺寸的一致性,確保最佳結果。
調整縮圖影像大小的關鍵是使用 imagecopyresampled()。調整大小操作應調整影像的較小一側以匹配拇指的相應一側。例如,如果來源影像為 1280x800 像素,縮圖為 200x150 像素,則在裁切之前應將影像大小調整為 240x150 像素。這可確保縱橫比保持不變。
這是使用此方法的修訂程式碼:
<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中文網其他相關文章!