Created
May 27, 2016 23:24
-
-
Save aaryadev/071948fc52ff0fb9d518e8821b330519 to your computer and use it in GitHub Desktop.
PHP thumbnail creator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function makeThumbnails($updir, $img, $id) | |
{ | |
$thumbnail_width = 134; | |
$thumbnail_height = 189; | |
$thumb_beforeword = "thumb"; | |
$arr_image_details = getimagesize("$updir" . $id . '_' . "$img"); // pass id to thumb name | |
$original_width = $arr_image_details[0]; | |
$original_height = $arr_image_details[1]; | |
if ($original_width > $original_height) { | |
$new_width = $thumbnail_width; | |
$new_height = intval($original_height * $new_width / $original_width); | |
} else { | |
$new_height = $thumbnail_height; | |
$new_width = intval($original_width * $new_height / $original_height); | |
} | |
$dest_x = intval(($thumbnail_width - $new_width) / 2); | |
$dest_y = intval(($thumbnail_height - $new_height) / 2); | |
if ($arr_image_details[2] == 1) { | |
$imgt = "ImageGIF"; | |
$imgcreatefrom = "ImageCreateFromGIF"; | |
} | |
if ($arr_image_details[2] == 2) { | |
$imgt = "ImageJPEG"; | |
$imgcreatefrom = "ImageCreateFromJPEG"; | |
} | |
if ($arr_image_details[2] == 3) { | |
$imgt = "ImagePNG"; | |
$imgcreatefrom = "ImageCreateFromPNG"; | |
} | |
if ($imgt) { | |
$old_image = $imgcreatefrom("$updir" . $id . '_' . "$img"); | |
$new_image = imagecreatetruecolor($thumbnail_width, $thumbnail_height); | |
imagecopyresized($new_image, $old_image, $dest_x, $dest_y, 0, 0, $new_width, $new_height, $original_width, $original_height); | |
$imgt($new_image, "$updir" . $id . '_' . "$thumb_beforeword" . "$img"); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment