MagickGetQuantumDepth
Posted: 2007-11-23T13:06:12-07:00
From the IMagick forum: There is no MagickGetQuantumDepth in MagickWand because the code which defines it in magick-property.c has an error:
[ code]
WandExport const char *MagickGetMAGICKCORE_QUANTUM_DEPTH(unsigned long *depth)
{
return(GetMagickQuantumDepth(depth));
}
[/code]
The function's name has apparently suffered a search and replace error - it's also mangled in the comment preceding the function.
Pete
[ code]
WandExport const char *MagickGetMAGICKCORE_QUANTUM_DEPTH(unsigned long *depth)
{
return(GetMagickQuantumDepth(depth));
}
[/code]
The function's name has apparently suffered a search and replace error - it's also mangled in the comment preceding the function.
Pete