We are having problem with colorize function in intervention package in laravel. We want to send rgb values not these -100,0,100 or similar. Does anybody have clue about what to do?
This is the code:
$img = Image::make('assets/images/part6_v1.png');
$img->colorize(-100, 0, 100);
$data = (string) $img->encode('data-url');
return $data;