芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/vendor/league/glide/src/Manipulators/Contrast.php
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; } }