[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
Data Shendy
/
Back up Shendy
/
DATA
/
amd64
/
httpd
/
htdocs
/
bulian
/
lib
/
minigalnano
/
[
Home
]
File: createthumb.php
<?php /** * Read lib/minigalnano/Thumb.php for more * information * * Original source by Hendro Wicaksono * delivered from Minigal Nano * * - 2022 modified by Drajat Hasan (drajathasan20@gmail.com) */ use Minigalnano\Thumb; define('INDEX_AUTH', '1'); include __DIR__ . '/../../sysconfig.inc.php'; // Fetch filename based on query request $filename = isset($_GET['filename']) && !empty($_GET['filename']) ? urldecode($_GET['filename']) : 'notfound.png'; // thumb instance need parameter 1st as path to image file $thumbnail = new Thumb(SB . $filename); /** Thumb option **/ // Turn on image caching $thumbnail->setCacheOption('enable', true); // Set cache destination $thumbnail->setCacheOption('folder', SB . 'images/cache/'); // Set cache file path $thumbnail->setCacheOption('file', $thumbnail->getCacheOption('folder') . $thumbnail->getCacheOption('prefix') . basename($thumbnail->getFilePath()) ); // check image permission and attribution $thumbnail->isFileAllow()->orError(); $thumbnail->isFileExists()->orError(); $thumbnail->isReadable()->orError(); // set measurement $thumbnail->setWidth(( (isset($_GET['width']) AND trim($_GET['width']) != '') ? trim($_GET['width']) : 120)); $thumbnail->setHeight(( (isset($_GET['height']) AND trim($_GET['height']) != '') ? trim($_GET['height']) : 0)); // Preparing image and generate it $thumbnail->prepare()->generate();