/* curvr * depth.cc * Richard Crowley * $Id$ * * This is a test file to determine the quantum depth GraphicsMagick uses. */ #include "Magick++.h" #include using namespace Magick; int main(int, char * *) { Geometry geo(1, 1); Color color("red"); Image img(geo, color); printf("%d", img.depth()); }