You forgotten to set the Color-Range value!
It seems, that the result use defaults of 255 colors.
Search found 5 matches
- 2014-02-12T04:12:29-07:00
- Forum: PerlMagick
- Topic: Perl Magick Resize Color Issue
- Replies: 2
- Views: 11246
- 2014-02-10T18:28:24-07:00
- Forum: PerlMagick
- Topic: How do I strip out PNG metadata using PerlMagick?
- Replies: 9
- Views: 33155
Re: How do I strip out PNG metadata using PerlMagick?
This worked for me in the end - I just explicitly applied gamma to the image itself to lighten the resulting greyscale image BUT I still needed to strip out the gAMA setting int he header:- I´ve tested your image.png testfile. $:identify image.png image.png PNG 256x256 256x256+0+0 [color=#FF0000][b] ...
- 2014-02-10T17:44:53-07:00
- Forum: PerlMagick
- Topic: perlmagick vs command line
- Replies: 1
- Views: 11050
Re: perlmagick vs command line
Code: Select all
sudo apt get install --reinstall perlmagick
- 2014-02-10T17:40:25-07:00
- Forum: PerlMagick
- Topic: Using the image array vs. the root image for attributes
- Replies: 1
- Views: 9687
Re: Using the image array vs. the root image for attributes
The first element in a perl array ever will be "0" ... formerly seen as @array[0] or $array[0].
- 2014-02-10T17:30:04-07:00
- Forum: MagickWand
- Topic: Convert and OpenCL
- Replies: 3
- Views: 27311
Re: Convert and OpenCL
You tried thisone: time convert -rotate 45 -resize 800x600 -quality 80 ~/2.jpg ~/1.jpg Try this: time convert -resize 800x600 -rotate 45 -quality 80 ~/2.jpg ~/1.jpg Same effect: time convert -rotate 45 -scale 800x600 -quality 80 ~/2.jpg ~/1.jpg Should faster: time convert -scale 800x600 -rotate 45 ...