mirror of
https://github.com/WerySkok/nativegallery.git
synced 2024-11-15 19:49:16 +03:00
91 lines
3.1 KiB
PHP
91 lines
3.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Controllers\Api\Images;
|
||
|
|
||
|
class Compress {
|
||
|
private static function compressAndResizeImage($source_url, $quality, $max_width, $max_height) {
|
||
|
$info = getimagesize($source_url);
|
||
|
|
||
|
if ($info === false) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
$width = $info[0];
|
||
|
$height = $info[1];
|
||
|
$aspect_ratio = $width / $height;
|
||
|
|
||
|
// Вычисляем новые размеры, сохраняя соотношение сторон
|
||
|
if ($width > $height) {
|
||
|
$new_width = $max_width;
|
||
|
$new_height = $max_width / $aspect_ratio;
|
||
|
} else {
|
||
|
$new_height = $max_height;
|
||
|
$new_width = $max_height * $aspect_ratio;
|
||
|
}
|
||
|
|
||
|
if ($info['mime'] == 'image/jpeg') {
|
||
|
$image = imagecreatefromjpeg($source_url);
|
||
|
} elseif ($info['mime'] == 'image/gif') {
|
||
|
$image = imagecreatefromgif($source_url);
|
||
|
} elseif ($info['mime'] == 'image/png') {
|
||
|
$image = imagecreatefrompng($source_url);
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
$resized_image = imagecreatetruecolor($new_width, $new_height);
|
||
|
|
||
|
if ($info['mime'] == 'image/png' || $info['mime'] == 'image/gif') {
|
||
|
imagealphablending($resized_image, false);
|
||
|
imagesavealpha($resized_image, true);
|
||
|
$transparent = imagecolorallocatealpha($resized_image, 255, 255, 255, 127);
|
||
|
imagefilledrectangle($resized_image, 0, 0, $new_width, $new_height, $transparent);
|
||
|
}
|
||
|
|
||
|
imagecopyresampled($resized_image, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height);
|
||
|
|
||
|
ob_start();
|
||
|
imagejpeg($resized_image, null, $quality);
|
||
|
$compressed_image_data = ob_get_contents();
|
||
|
ob_end_clean();
|
||
|
|
||
|
imagedestroy($image);
|
||
|
imagedestroy($resized_image);
|
||
|
|
||
|
return $compressed_image_data;
|
||
|
}
|
||
|
|
||
|
private static function generateCacheFilename($source_url, $quality, $max_width, $max_height) {
|
||
|
return $_SERVER['DOCUMENT_ROOT'].'/cdn/imgcache/' . md5($source_url . $quality . $max_width . $max_height) . '.jpg';
|
||
|
}
|
||
|
|
||
|
public function __construct() {
|
||
|
$source_url = $_GET['url'];
|
||
|
$quality = 40;
|
||
|
$max_width = 400;
|
||
|
$max_height = 400;
|
||
|
|
||
|
$cache_filename = self::generateCacheFilename($source_url, $quality, $max_width, $max_height);
|
||
|
|
||
|
if (file_exists($cache_filename)) {
|
||
|
$compressed_image_data = file_get_contents($cache_filename);
|
||
|
} else {
|
||
|
$compressed_image_data = self::compressAndResizeImage($source_url, $quality, $max_width, $max_height);
|
||
|
|
||
|
if ($compressed_image_data) {
|
||
|
file_put_contents($cache_filename, $compressed_image_data);
|
||
|
} else {
|
||
|
echo "Произошла ошибка при сжатии изображения.";
|
||
|
exit;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if ($compressed_image_data) {
|
||
|
header('Content-Type: image/jpeg');
|
||
|
header('Content-Length: ' . strlen($compressed_image_data));
|
||
|
echo $compressed_image_data;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
?>
|