我曾尝试使用Magick ++。我尝试用它加载一个图像,但它失败了
void mPDF::addImage(std::string path, unsigned int x, unsigned int y)
{
Magick::InitializeMagick("C:\\CommonFiles\\GraphicsMagick\\");
//with or without the ending two \\ same results
Magick::Image img;
try
{
img.read("c:\\temp\\Moon.jpg");
}
catch (Magick::ErrorBlob p)
{
std::cout << "Folder: " << path << std::endl;
std::cout << p.what() << std::endl;
system("pause");
exit(1);
}
Magick::Geometry tmp = img.size();
for (int i = 0; i < tmp.height(); i++)
{
for (int j = 0; j < tmp.width(); j++)
{
Magick::Color col = img.pixelColor(i, j);
this->p.setLineColor(col.redQuantum(), col.greenQuantum(), col.blueQuantum());
this->p.drawLine(x + j, y - i, x + j, y - i);
}
}
}
它抛出一个异常,他无法加载该文件。它说:无法打开Image'³.0':没有这样的文件或目录。在Magick ++文档中,它的写法就像我使用它一样。
有人可以帮助我吗?