view src/graphicsmagick-test.cpp @ 3873:58aa10af640e

of-communications: update to v1.2.1 * src/of-communications.mk: update version, checksum, subdir, add options for cross compile * build_packages.m: update version
author John Donoghue
date Mon, 06 Apr 2015 13:53:50 -0400
parents 99516e73b368
children
line wrap: on
line source

/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <Magick++.h>

int main(int argc, char *argv[])
{
    (void)argc;
    (void)argv;

    Magick::InitializeMagick(0);

    Magick::Image image;
    image.quality(90);

    return 0;
}