There are not settings for this, but if you really need to, you can open file /app/parsers/slir/slir.class.php, line 847:
$this->rendered->quality = ($this->request->quality !== NULL)
? $this->request->quality : SLIRConfig::$defaultQuality;
Comment out the code above, and instead set the following:
$this->rendered->quality = 100;
/*$this->rendered->quality = ($this->request->quality !== NULL)
? $this->request->quality : SLIRConfig::$defaultQuality;*/
I don't recommend the above for several reasons:
- Have you compared the image quality? File size may TRIPLE (yes that's right 3x file-size), without any visible difference in image quality.
- On new RETINA screen devices (screens with double pixel density), the value should be lower if anything. Images are already served at double size because screens use "pixel-doubling", but this also makes compression less visible.
It is not a good idea, but up to you ... :wink: