I installed Magick++ from the windows binaries.
I copy pasted this into QT creator, it coudn't find Magick++.h at first so I just copy/pasted the relevant headers + folders from source into my project :
Code: Select all
#include <iostream>
#include <Magick++.h>
#include <string>
using namespace std;
using namespace Magick;
int main( int /*argc*/, char ** argv)
{
// Initialize ImageMagick install location for Windows
InitializeMagick(*argv);
cout << "Hello World";
cin.get();
return 0;
}