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 중국어 웹사이트의 기타 관련 기사를 참조하세요!