File "Helpers-20250320234241.php"
Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/spatie/image/Helpers-20250320234241.php
File size: 236 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Spatie\Image\Drivers\Imagick;
class Helpers
{
public static function normalizeColorizeLevel(float $level): float
{
return $level > 0
? $level / 5
: ($level + 100) / 100;
}
}