pixelfed/app/Util/Media/Image.php

147 wiersze
3.8 KiB
PHP
Czysty Zwykły widok Historia

2018-05-23 00:06:21 +00:00
<?php
namespace App\Util\Media;
use App\Media;
use Image as Intervention;
2018-08-28 03:07:36 +00:00
use Storage;
2018-05-23 00:06:21 +00:00
2018-08-28 03:07:36 +00:00
class Image
{
public $square;
public $landscape;
public $portrait;
public $thumbnail;
public $orientation;
public function __construct()
{
ini_set('memory_limit', config('pixelfed.memory_limit', '1024M'));
$this->square = $this->orientations()['square'];
$this->landscape = $this->orientations()['landscape'];
$this->portrait = $this->orientations()['portrait'];
$this->thumbnail = [
'width' => 293,
'height' => 293,
2018-05-23 00:06:21 +00:00
];
2018-08-28 03:07:36 +00:00
$this->orientation = null;
}
2018-05-23 00:06:21 +00:00
2018-08-28 03:07:36 +00:00
public function orientations()
{
return [
2018-05-23 00:06:21 +00:00
'square' => [
2018-08-28 03:07:36 +00:00
'width' => 1080,
'height' => 1080,
2018-05-23 00:06:21 +00:00
],
'landscape' => [
2018-08-28 03:07:36 +00:00
'width' => 1920,
'height' => 1080,
2018-05-23 00:06:21 +00:00
],
'portrait' => [
2018-08-28 03:07:36 +00:00
'width' => 1080,
'height' => 1350,
],
2018-05-23 00:06:21 +00:00
];
}
2018-08-28 03:07:36 +00:00
public function getAspectRatio($mediaPath, $thumbnail = false)
{
if (!is_file($mediaPath)) {
throw new \Exception('Invalid Media Path');
}
if ($thumbnail) {
return [
'dimensions' => $this->thumbnail,
'orientation' => 'thumbnail',
2018-05-23 00:06:21 +00:00
];
2018-08-28 03:07:36 +00:00
}
2018-05-23 00:06:21 +00:00
2018-08-28 03:07:36 +00:00
list($width, $height) = getimagesize($mediaPath);
$aspect = $width / $height;
$orientation = $aspect === 1 ? 'square' :
2018-05-23 00:06:21 +00:00
($aspect > 1 ? 'landscape' : 'portrait');
2018-08-28 03:07:36 +00:00
$this->orientation = $orientation;
return [
'dimensions' => $this->orientations()[$orientation],
'orientation' => $orientation,
2018-05-23 00:06:21 +00:00
];
2018-08-28 03:07:36 +00:00
}
public function resizeImage(Media $media)
{
2018-08-28 03:07:36 +00:00
$basePath = storage_path('app/'.$media->media_path);
$this->handleResizeImage($media);
}
2018-05-23 00:06:21 +00:00
2018-08-28 03:07:36 +00:00
public function resizeThumbnail(Media $media)
{
$basePath = storage_path('app/'.$media->media_path);
$this->handleThumbnailImage($media);
2018-05-23 00:06:21 +00:00
}
2018-08-28 03:07:36 +00:00
public function handleResizeImage(Media $media)
{
$this->handleImageTransform($media, false);
}
2018-08-28 03:07:36 +00:00
public function handleThumbnailImage(Media $media)
{
$this->handleImageTransform($media, true);
}
2018-05-23 00:06:21 +00:00
2018-08-28 03:07:36 +00:00
public function handleImageTransform(Media $media, $thumbnail = false)
{
$path = $media->media_path;
$file = storage_path('app/'.$path);
$ratio = $this->getAspectRatio($file, $thumbnail);
$aspect = $ratio['dimensions'];
$orientation = $ratio['orientation'];
if ($media->mime === 'image/gif' && !$thumbnail) {
return;
}
try {
$img = Intervention::make($file)->orientate();
$img->resize($aspect['width'], $aspect['height'], function ($constraint) {
$constraint->aspectRatio();
});
$converted = $this->setBaseName($path, $thumbnail, $img->extension);
$newPath = storage_path('app/'.$converted['path']);
$quality = config('pixelfed.image_quality');
$img->save($newPath, $quality);
if (!$thumbnail) {
$media->orientation = $orientation;
}
if ($thumbnail == true) {
$media->thumbnail_path = $converted['path'];
$media->thumbnail_url = url(Storage::url($converted['path']));
} else {
$media->media_path = $converted['path'];
$media->mime = $img->mime;
}
$media->save();
} catch (Exception $e) {
}
}
public function setBaseName($basePath, $thumbnail, $extension)
{
$png = false;
$path = explode('.', $basePath);
$name = ($thumbnail == true) ? $path[0].'_thumb' : $path[0];
$ext = last($path);
$basePath = "{$name}.{$ext}";
return ['path' => $basePath, 'png' => $png];
}
}