/home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators
Edit: /home/techb158/ileadtechnology.com/vendor/league/glide/src/Manipulators/Contrast.php (902B)
getContrast();
if (null !== $contrast) {
$image->contrast($contrast);
}
return $image;
}
/**
* Resolve contrast amount.
*
* @return string The resolved contrast amount.
*/
public function getContrast()
{
if (null === $this->con || !preg_match('/^-*[0-9]+$/', $this->con)) {
return;
}
if ($this->con < -100 or $this->con > 100) {
return;
}
return (int) $this->con;
}
}