c3lf-system-3/public/thumbnail.php

33 lines
817 B
PHP
Raw Normal View History

2019-12-05 13:11:18 +00:00
<?php
2019-12-11 22:12:00 +00:00
function log_error(string $message){
file_put_contents('../php_errors.log', $message.PHP_EOL , FILE_APPEND | LOCK_EX);
}
2019-12-11 22:12:00 +00:00
$width = 200;
$height = 200;
$quality = 90;
$thumb = getcwd() . $_GET["id"];
$img = str_replace("thumbnails", "staticimages", $thumb);
if (is_file($img)) {
$imagick = new Imagick($img);
$imagick->setImageFormat('jpeg');
$imagick->setImageCompression(Imagick::COMPRESSION_JPEG);
$imagick->setImageCompressionQuality($quality);
$imagick->cropThumbnailImage($width, $height);
$imagick->setImagePage(0, 0, 0, 0);
if (file_put_contents($thumb, $imagick) === false) {
2019-12-11 22:12:00 +00:00
log_error("Could not put contents.");
}
2019-12-11 22:12:00 +00:00
header("Content-type: image/jpeg");
echo $imagick;
exit;
} else {
2019-12-11 22:12:00 +00:00
log_error("No valid image provided with {$img}.");
}
2019-12-05 13:11:18 +00:00
?>