/var/www/flurhymez/vendor/league/glide/src/Manipulators/Helpers
Edit: /var/www/flurhymez/vendor/league/glide/src/Manipulators/Helpers/Dimension.php (1144B)
image = $image;
$this->dpr = $dpr;
}
/**
* Resolve the dimension.
* @param string $value The dimension value.
* @return double The resolved dimension.
*/
public function get($value)
{
if (is_numeric($value) and $value > 0) {
return (double) $value * $this->dpr;
}
if (preg_match('/^(\d{1,2}(?!\d)|100)(w|h)$/', $value, $matches)) {
if ($matches[2] === 'h') {
return (double) $this->image->height() * ($matches[1] / 100);
}
return (double) $this->image->width() * ($matches[1] / 100);
}
}
}