Page 1 of 1

LAB/LUV colorspace support

Posted: 2013-07-13T00:49:33-07:00
by tsftd
Does magick++ not support LAB/LUV colorspace? Imagemagick does, but I can't find anything about LAB/LUV in the magick++ documentation, or in the forum or via google.

I'm implementing several suggestions on resize techniques, such as http://www.imagemagick.org/Usage/resize/#resize_lab

http://www.imagemagick.org/Magick++/Enu ... rspaceType doesn't list either of them, and in the compiler, LUV doesn't show up and LAB only shows as present in deprecate.h, and doesn't work as an argument to imagefile.colorSpace(LABColorspace);

Re: LAB/LUV colorspace support

Posted: 2013-07-13T03:55:44-07:00
by magick
Until we get a patch, try MagickCore::LabColorspace or MagickCore LuvColorspace.

Re: LAB/LUV colorspace support

Posted: 2013-07-13T18:11:31-07:00
by tsftd
works like a charm, thanks!