이 기사의 예에서는 PHP에서 썸네일을 동적으로 생성하고 이를 출력하여 표시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
전화 방법:
<img src="thumbs.php?filename=photo.jpg&width=100&height=100">
이 코드는 표시할 큰 사진의 축소판을 동적으로 생성할 수 있습니다. 사진은 메모리에 생성되며 하드 디스크에 실제 파일을 생성하지 않습니다.
thumbs.php 파일은 다음과 같습니다.
<?php $filename= $_GET['filename']; $width = $_GET['width']; $height = $_GET['height']; $path="http://localhost/images/"; //finish in "/" // Content type header('Content-type: image/jpeg'); // Get new dimensions list($width_orig, $height_orig) = getimagesize($path.$filename); if ($width && ($width_orig < $height_orig)) { $width = ($height / $height_orig) * $width_orig; } else { $height = ($width / $width_orig) * $height_orig; } // Resample $image_p = imagecreatetruecolor($width, $height); $image = imagecreatefromjpeg($path.$filename); imagecopyresampled($image_p,$image,0,0,0,0,$width,$height,$width_orig,$height_orig); // Output imagejpeg($image_p, null, 100); // Imagedestroy imagedestroy ($image_p); ?>
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.