the only code given is:
the link to the page is,
I'm not sure how i'm supposed to use this script to edit a picture, and i searched cpan, and google, but i could not find anything on it.
if any of you know how to take an image, adjust the Hue and print it out, please let me know,
thanks soooo much for your time!
Nate_Bro
Code:
use Graphics::RGBManipulate;
my ($red, $green, $blue) = Graphics::RGBManipulate::tweak(
hue => 40,
red => 255,
green => 0,
blue => 0
); # Changes the colour RGB(255, 0, 0) into bright orange
my $hex_string = Graphics::RGBManipulate::tweak(
hex => $old_hex_string,
saturation => 0
); # Returns what $old_hex_string would be as greyscale
the link to the page is,
I'm not sure how i'm supposed to use this script to edit a picture, and i searched cpan, and google, but i could not find anything on it.
if any of you know how to take an image, adjust the Hue and print it out, please let me know,
thanks soooo much for your time!
Nate_Bro