ホームページ >バックエンド開発 >PHPチュートリアル >PHP で大きな画像を効果的にトリミングするにはどうすればよいですか?
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 中国語 Web サイトの他の関連記事を参照してください。