분류
php
썸네일 이미지 만들기
본문
<?php
$max_width = 150;
$image = imageCreateFromJPEG("s&le.jpg");
$current_width = imagesx($image);
$current_height = imagesy($image);
// Set thumbnail width
$widths = array($current_width, $max_width);
$new_width = min($widths);
// Calculate thumbnail height from given width to maintain ratio
$new_height = $current_height / $current_width*$new_width;
// Create new image using thumbnail sizes
$thumb = imagecreatetruecolor($new_width,$new_height);
// Copy original image to thumbnail
imagecopyres&led($thumb,$image,0,0,0,0,$new_width,$new_height,imagesx($image),imagesy($image));
// Show thumbnail on screen
imagejpeg($thumb, "thumbnail.jpg");
imagedestroy($thumb);
?>
- 이전글매일 새로운 이미지 보여주기 15.05.18
- 다음글이미지 위에 텍스트 쓰기 15.05.18