Code: Select all
#include <Magick++.h>
#include <iostream>
#include <string>
using namespace std;
using namespace Magick;
int main(int argc, char** argv)
{
try
{
Magick::Image swatches(Magick::Geometry(5, 6),
Magick::ColorRGB(1.0, 1.0, 1.0));
swatches.write("swatch.jpg");
}
catch (Magick::Exception& err)
{
fprintf(stderr, "Exception:%s",err.what());
}
}