PHP에서 이미지 자르기: 더 큰 이미지에 맞게 크기 조정
제공된 코드는 이미지를 효과적으로 자르지만 더 큰 이미지에는 어려움을 겪을 수 있습니다. 이 문제를 해결하기 위해 이미지를 "축소"할 수 있습니다. 목표는 자르기 전에 이미지 크기의 일관성을 유지하여 최적의 결과를 보장하는 것입니다.
썸네일용 이미지 크기를 조정하는 핵심은 imagecopyresampled()를 사용하는 것입니다. 크기 조정 작업에서는 엄지 손가락의 해당 면과 일치하도록 이미지의 작은 면을 조정해야 합니다. 예를 들어 소스 이미지가 1280x800px이고 축소판 그림이 200x150px인 경우 자르기 전에 이미지 크기를 240x150px로 조정해야 합니다. 이렇게 하면 가로 세로 비율이 그대로 유지됩니다.
다음은 이 접근 방식을 사용하여 수정된 코드입니다.
<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 중국어 웹사이트의 기타 관련 기사를 참조하세요!