Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: converting Jpeg to grayscale

by snadra (Scribe)
on Jul 22, 2003 at 13:33 UTC ( [id://276717]=note: print w/replies, xml ) Need Help??


in reply to converting Jpeg to grayscale

If you are willing to use other modules instead of GD you could also use Imager. It is easier to install than Image::Magick, and it is capable to do many image manipulation stuff as well.
It also has gif support, if you need that. It will ask if gif support should be enabled during the installation.
For setting the hue and saturation of the image do this:
my $color = Imager::Color->new(hue=>120, value=>1, saturation=>0.5);

Replies are listed 'Best First'.
Re: Re: converting Jpeg to grayscale
by Anonymous Monk on Jul 22, 2003 at 14:30 UTC
    Maybe I'm just to dumb to understand the documentation, but this seems like it should work no?
    use Imager; my $pregray = Imager->new(); $pregray->copy($original); my $grey = $pregray->convert(preset=>'grey');
    Or am I passing in the original image wrong?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://276717]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-03-29 06:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found