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 中国語 Web サイトの他の関連記事を参照してください。