Ok,
First of all, you have (of course) to install ImageMagick and Magick++
I'm currently using them with a Debian, and I don't know yet if it will work with Windows, but
ImageMagick is available for Windows too.
I'll try this tomorrow, because my app needs to be fully cross-platform, but for now, I have only the Linux way.
I added these lines to my project files, so you can use the libs well
INCLUDEPATH += . /usr/include/Magick++
LIBS += -L/usr/lib -lMagick++
Then, check this page, it contains examples that load an image with Magick++.
All you have to do is grab the image buffer with a BLOB objet, and apply it in Qt, in a QPixmap or a QImage....
http://www.imagemagick.org/Magick++/Image.html
I've attached the imageviewer example (modified), that loads a file through ImageMagick, and displays it in a QWidget.
Hope this helps !
Guilugi.