Page 1 of 1

Haiku ImageMagick GUI - One click optimising

Posted: 2017-11-18T14:12:36-07:00
by lelldorin
Hello all,

a want to add a one click optimising function into my IM GUI.

I have collect some functions who should optimise an image:

Code: Select all

convert -strip -interlace Plane -auto-orient -normalize -compress None  input-file output-file
Make this process sense? Can this one used for all image types or should i separate them info the image types?

Greetings Lelldorin

Re: Haiku ImageMagick GUI - One click optimising

Posted: 2017-11-18T15:35:49-07:00
by snibgo
IM commands should be written as: read the image, process it, write the image. So your processing should occur after the input image.

"-normalize" clips the pixels, at both ends. I would never do this for standard image processing.