This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/handle_pixel/main.php

80 lines
2.7 KiB
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
class PixelFileHandler extends DataHandlerExtension
{
protected $SUPPORTED_MIME = [MIME_TYPE_JPEG, MIME_TYPE_GIF, MIME_TYPE_PNG, MIME_TYPE_WEBP];
2020-02-23 18:37:22 +00:00
protected function media_check_properties(MediaCheckPropertiesEvent $event): void
{
2019-09-29 13:30:55 +00:00
if (in_array($event->ext, Media::LOSSLESS_FORMATS)) {
2020-01-29 20:22:50 +00:00
$event->image->lossless = true;
} elseif ($event->ext==EXTENSION_WEBP) {
2020-01-29 20:22:50 +00:00
$event->image->lossless = Media::is_lossless_webp($event->file_name);
}
2020-02-23 18:37:22 +00:00
if ($event->image->lossless==null) {
$event->image->lossless = false;
}
$event->image->audio = false;
switch ($event->ext) {
case EXTENSION_GIF:
2020-02-23 18:37:22 +00:00
$event->image->video = Media::is_animated_gif($event->file_name);
break;
case EXTENSION_WEBP:
2020-02-23 18:37:22 +00:00
$event->image->video = Media::is_animated_webp($event->file_name);
break;
default:
$event->image->video = false;
break;
}
$event->image->image = !$event->image->video;
2020-02-23 18:37:22 +00:00
$info = getimagesize($event->file_name);
if ($info) {
2020-01-29 20:22:50 +00:00
$event->image->width = $info[0];
$event->image->height = $info[1];
}
}
protected function check_contents(string $tmpname): bool
{
$valid = [IMAGETYPE_PNG, IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_WEBP];
$info = getimagesize($tmpname);
2020-02-23 18:14:15 +00:00
return $info && in_array($info[2], $valid);
}
protected function create_thumb(string $hash, string $type): bool
{
try {
create_image_thumb($hash, $type);
return true;
} catch (InsufficientMemoryException $e) {
$tsize = get_thumbnail_max_size_scaled();
$thumb = imagecreatetruecolor($tsize[0], min($tsize[1], 64));
$white = imagecolorallocate($thumb, 255, 255, 255);
$black = imagecolorallocate($thumb, 0, 0, 0);
imagefill($thumb, 0, 0, $white);
log_warning("handle_pixel", "Insufficient memory while creating thumbnail: ".$e->getMessage());
imagestring($thumb, 5, 10, 24, "Image Too Large :(", $black);
return true;
} catch (Exception $e) {
log_error("handle_pixel", "Error while creating thumbnail: ".$e->getMessage());
return false;
}
}
public function onImageAdminBlockBuilding(ImageAdminBlockBuildingEvent $event)
{
$event->add_part("
2012-03-24 11:16:59 +00:00
<form>
2012-08-15 18:46:51 +00:00
<select class='shm-zoomer'>
2012-03-24 11:16:59 +00:00
<option value='full'>Full Size</option>
<option value='width'>Fit Width</option>
<option value='height'>Fit Height</option>
<option value='both'>Fit Both</option>
</select>
</form>
", 20);
}
}