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

113 lines
4 KiB
PHP
Raw Normal View History

2020-01-26 13:19:35 +00:00
<?php declare(strict_types=1);
class PixelFileHandler extends DataHandlerExtension
{
const SUPPORTED_EXTENSIONS = ["jpg", "jpeg", "gif", "png", "webp"];
public function onMediaCheckProperties(MediaCheckPropertiesEvent $event)
{
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;
2019-09-29 13:30:55 +00:00
} elseif ($event->ext=="webp") {
2020-01-29 20:22:50 +00:00
$event->image->lossless = Media::is_lossless_webp($event->file_name);
}
2019-09-29 13:30:55 +00:00
if (in_array($event->ext, self::SUPPORTED_EXTENSIONS)) {
2020-01-29 20:22:50 +00:00
if ($event->image->lossless==null) {
$event->image->lossless = false;
}
2020-01-29 20:22:50 +00:00
$event->image->audio = false;
switch ($event->ext) {
case "gif":
2020-01-29 20:22:50 +00:00
$event->image->video = Media::is_animated_gif($event->file_name);
break;
case "webp":
2020-01-29 20:22:50 +00:00
$event->image->video = Media::is_animated_webp($event->file_name);
break;
default:
2020-01-29 20:22:50 +00:00
$event->image->video = false;
break;
}
2020-01-29 20:22:50 +00:00
$event->image->image = !$event->image->video;
$info = getimagesize($event->file_name);
if (!$info) {
return null;
}
2020-01-29 20:22:50 +00:00
$event->image->width = $info[0];
$event->image->height = $info[1];
}
}
protected function supported_ext(string $ext): bool
{
$ext = (($pos = strpos($ext, '?')) !== false) ? substr($ext, 0, $pos) : $ext;
return in_array(strtolower($ext), self::SUPPORTED_EXTENSIONS);
}
protected function create_image_from_data(string $filename, array $metadata)
{
$image = new Image();
$image->filesize = $metadata['size'];
$image->hash = $metadata['hash'];
$image->filename = (($pos = strpos($metadata['filename'], '?')) !== false) ? substr($metadata['filename'], 0, $pos) : $metadata['filename'];
$image->ext = (($pos = strpos($metadata['extension'], '?')) !== false) ? substr($metadata['extension'], 0, $pos) : $metadata['extension'];
$image->tag_array = is_array($metadata['tags']) ? $metadata['tags'] : Tag::explode($metadata['tags']);
$image->source = $metadata['source'];
return $image;
}
protected function check_contents(string $tmpname): bool
{
$valid = [IMAGETYPE_PNG, IMAGETYPE_GIF, IMAGETYPE_JPEG, IMAGETYPE_WEBP];
if (!file_exists($tmpname)) {
return false;
}
$info = getimagesize($tmpname);
2020-01-27 22:22:07 +00:00
if (!$info) {
return false;
}
if (in_array($info[2], $valid)) {
return true;
}
return false;
}
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);
}
}