Search found 5 matches

by Phantom7
2014-02-12T04:12:29-07:00
Forum: PerlMagick
Topic: Perl Magick Resize Color Issue
Replies: 2
Views: 10096

Re: Perl Magick Resize Color Issue

You forgotten to set the Color-Range value! ;)

It seems, that the result use defaults of 255 colors.
by Phantom7
2014-02-10T18:28:24-07:00
Forum: PerlMagick
Topic: How do I strip out PNG metadata using PerlMagick?
Replies: 9
Views: 30112

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...
by Phantom7
2014-02-10T17:44:53-07:00
Forum: PerlMagick
Topic: perlmagick vs command line
Replies: 1
Views: 10109

Re: perlmagick vs command line

Code: Select all

sudo apt get install --reinstall perlmagick
When you build it inner perl, the result will be, that you´ve got!
by Phantom7
2014-02-10T17:40:25-07:00
Forum: PerlMagick
Topic: Using the image array vs. the root image for attributes
Replies: 1
Views: 8753

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].
by Phantom7
2014-02-10T17:30:04-07:00
Forum: MagickWand
Topic: Convert and OpenCL
Replies: 3
Views: 26031

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 ...