I need to convert an image depth to 24 bits/pixel.
I tried MagickSetImageDepth(m_wand,24) but i was not doing its job.
so I tried MagickQuantizeImage(m_wand,0,RGBColorspace,0,MagickBooleanType::MagickFalse,MagickBooleanType::MagickFalse);
again nothing happens
MagickBooleanType And MagickQuantizeImage
Re: MagickBooleanType And MagickQuantizeImage
The image depth is per pixel component. Set the wand depth to 8.I need to convert an image depth to 24 bits/pixel.
I tried MagickSetImageDepth(m_wand,24) but i was not doing its job.