test01.cpp
#include <Magick++.h>
using namespace Magick;
Image img;
img.read(filepath);
// exifという文字列の指定がポイント。
Blob blob = img.profile("exif");
// blob.data()でEXIF情報が取得できる。
g++ -o test01 test01.cpp `Magick++-config --cppflags --cxxflags --libs --ldflags`
文字列で取得できる方法があった
タグを指定する必要があるが、
string exifVal = img.attribute("EIXF:DateTimeOriginal");