>백엔드 개발 >PHP 튜토리얼 >PHP에서 썸네일을 동적으로 생성하고 display_php 팁으로 출력하는 방법

PHP에서 썸네일을 동적으로 생성하고 display_php 팁으로 출력하는 방법

WBOY
WBOY원래의
2016-05-16 20:17:07996검색

이 기사의 예에서는 PHP에서 썸네일을 동적으로 생성하고 이를 출력하여 표시하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.

전화 방법:

<img src="thumbs.php&#63;filename=photo.jpg&width=100&height=100">

이 코드는 표시할 큰 사진의 축소판을 동적으로 생성할 수 있습니다. 사진은 메모리에 생성되며 하드 디스크에 실제 파일을 생성하지 않습니다.

thumbs.php 파일은 다음과 같습니다.

<&#63;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);
&#63;>

이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.