* thumbnail size and type changed
This commit is contained in:
parent
5b0d883558
commit
36fa6c3297
@ -15,7 +15,7 @@ class GalleryService
|
|||||||
|
|
||||||
const CONFIG_FILE = 'data/galleries/config.yaml';
|
const CONFIG_FILE = 'data/galleries/config.yaml';
|
||||||
const IMAGE_BASEDIR = 'data/galleries/%s/';
|
const IMAGE_BASEDIR = 'data/galleries/%s/';
|
||||||
const THUMBNAIL_SIZE = 250;
|
const THUMBNAIL_SIZE = 500;
|
||||||
|
|
||||||
protected $contentTypeMap = [
|
protected $contentTypeMap = [
|
||||||
'jpg' => 'image/jpeg',
|
'jpg' => 'image/jpeg',
|
||||||
@ -166,10 +166,10 @@ class GalleryService
|
|||||||
$thumbImageName = $thumbPath . "/" . $imageName;
|
$thumbImageName = $thumbPath . "/" . $imageName;
|
||||||
|
|
||||||
if (!file_exists($thumbImageName)) {
|
if (!file_exists($thumbImageName)) {
|
||||||
$thumbSize = new Box($numericSize, $numericSize);
|
$thumbSize = new Box($numericSize, $numericSize*10);
|
||||||
$imagine = new Imagine();
|
$imagine = new Imagine();
|
||||||
$image = $imagine->open($galleryDirectory . $imageName)
|
$image = $imagine->open($galleryDirectory . $imageName)
|
||||||
->thumbnail($thumbSize, ImageInterface::THUMBNAIL_OUTBOUND);
|
->thumbnail($thumbSize, ImageInterface::THUMBNAIL_INSET);
|
||||||
$image->effects()->sharpen();
|
$image->effects()->sharpen();
|
||||||
$image->save($thumbImageName);
|
$image->save($thumbImageName);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user