LAB/LUV colorspace support

Magick++ is an object-oriented C++ interface to ImageMagick. Use this forum to discuss, make suggestions about, or report bugs concerning Magick++.
Post Reply
tsftd
Posts: 28
Joined: 2012-01-14T11:46:55-07:00
Authentication code: 8675308

LAB/LUV colorspace support

Post 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);
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: LAB/LUV colorspace support

Post by magick »

Until we get a patch, try MagickCore::LabColorspace or MagickCore LuvColorspace.
tsftd
Posts: 28
Joined: 2012-01-14T11:46:55-07:00
Authentication code: 8675308

Re: LAB/LUV colorspace support

Post by tsftd »

works like a charm, thanks!
Post Reply