mirror of
https://github.com/Fluffy-Bean/image-gallery.git
synced 2025-01-04 05:45:59 +00:00
20 lines
637 B
PHP
20 lines
637 B
PHP
<?php
|
|
/*
|
|
|-------------------------------------------------------------
|
|
| Create Thumbnails
|
|
|-------------------------------------------------------------
|
|
| Default resolution for a preview image is 300px (max-width)
|
|
| ** Not yet implemented **
|
|
|-------------------------------------------------------------
|
|
*/
|
|
function make_thumbnail($image_path, $thumbnail_path, $resolution) {
|
|
try {
|
|
$thumbnail = new Imagick($image_path);
|
|
$thumbnail->resizeImage($resolution,null,null,1,null);
|
|
$thumbnail->writeImage($thumbnail_path);
|
|
|
|
return "success";
|
|
} catch (Exception $e) {
|
|
return $e;
|
|
}
|
|
} |