image: bump down decodable quality to 85

We no longer use this API for image editing, so this is
an acceptable compromise for now

Signed-off-by: Varun Patil <radialapps@gmail.com>

#653
pull/672/head
Varun Patil 2023-05-17 17:36:05 -07:00
parent a8fe957161
commit 64faee08db
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ class ImageController extends GenericApiController
try {
$image->autoOrient();
$image->setImageFormat('jpeg');
$image->setImageCompressionQuality(95);
$image->setImageCompressionQuality(85);
$blob = $image->getImageBlob();
$mimetype = $image->getImageMimeType();
} catch (\ImagickException $e) {