65 lines
2.0 KiB
PHP
65 lines
2.0 KiB
PHP
<?php
|
|
namespace Opencart\Catalog\Model\Tool;
|
|
/**
|
|
* Class Image
|
|
*
|
|
* @package Opencart\Catalog\Model\Tool
|
|
*/
|
|
class Image extends \Opencart\System\Engine\Model {
|
|
/**
|
|
* @param string $filename
|
|
* @param int $width
|
|
* @param int $height
|
|
* @param string $default
|
|
*
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
public function resize(string $filename, int $width, int $height, string $default = ''): string {
|
|
if (!is_file(DIR_IMAGE . $filename) || substr(str_replace('\\', '/', realpath(DIR_IMAGE . $filename)), 0, strlen(DIR_IMAGE)) != DIR_IMAGE) {
|
|
return '';
|
|
}
|
|
|
|
$extension = pathinfo($filename, PATHINFO_EXTENSION);
|
|
|
|
$image_old = $filename;
|
|
$image_new = 'cache/' . oc_substr($filename, 0, oc_strrpos($filename, '.')) . '-' . (int)$width . 'x' . (int)$height . '.' . $extension;
|
|
|
|
if (!is_file(DIR_IMAGE . $image_new) || (filemtime(DIR_IMAGE . $image_old) > filemtime(DIR_IMAGE . $image_new))) {
|
|
list($width_orig, $height_orig, $image_type) = getimagesize(DIR_IMAGE . $image_old);
|
|
|
|
if (!in_array($image_type, [IMAGETYPE_PNG, IMAGETYPE_JPEG, IMAGETYPE_GIF, IMAGETYPE_WEBP])) {
|
|
return $this->config->get('config_url') . 'image/' . $image_old;
|
|
}
|
|
|
|
$path = '';
|
|
|
|
$directories = explode('/', dirname($image_new));
|
|
|
|
foreach ($directories as $directory) {
|
|
if (!$path) {
|
|
$path = $directory;
|
|
} else {
|
|
$path = $path . '/' . $directory;
|
|
}
|
|
|
|
if (!is_dir(DIR_IMAGE . $path)) {
|
|
@mkdir(DIR_IMAGE . $path, 0777);
|
|
}
|
|
}
|
|
|
|
if ($width_orig != $width || $height_orig != $height) {
|
|
$image = new \Opencart\System\Library\Image(DIR_IMAGE . $image_old);
|
|
$image->resize($width, $height, $default);
|
|
$image->save(DIR_IMAGE . $image_new);
|
|
} else {
|
|
copy(DIR_IMAGE . $image_old, DIR_IMAGE . $image_new);
|
|
}
|
|
}
|
|
|
|
$image_new = str_replace(' ', '%20', $image_new); // fix bug when attach image on email (gmail.com). it is automatically changing space from " " to +
|
|
|
|
return $this->config->get('config_url') . 'image/' . $image_new;
|
|
}
|
|
}
|