芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/vendor/league/glide/src/Manipulators/Gamma.php
getGamma(); if ($gamma) { $image->gamma($gamma); } return $image; } /** * Resolve gamma amount. * * @return float|null 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; } }