set colorspace with magick++
Posted: 2009-10-30T13:25:50-07:00
Hi
I want to reproduce with magick++ the fallowing command line :
I tried :
the result isn't the same
How can I set the colorspace with magick++ ?
thanks
I want to reproduce with magick++ the fallowing command line :
Code: Select all
C:\Program Files\ImageMagick-6.4.7-Q16>convert C:\000
00.dpx -set colorspace RGB C:\00000.tga
Code: Select all
Image m_MagickImage;
m_MagickImage.read("C:\00000.dpx");
m_MagickImage.colorSpace(RGBColorspace);
m_MagickImage.write("C:\00000.tga");
How can I set the colorspace with magick++ ?
thanks