/home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators
Edit: /home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators/Gamma.php (871B)
getGamma();
if ($gamma) {
$image->gamma($gamma);
}
return $image;
}
/**
* Resolve gamma amount.
*
* @return string The resolved gamma amount.
*/
public function getGamma()
{
if (null === $this->gam || !preg_match('/^[0-9]\.*[0-9]*$/', $this->gam)) {
return;
}
if ($this->gam < 0.1 or $this->gam > 9.99) {
return;
}
return (float) $this->gam;
}
}