我曾尝试使用 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);
}
}
}
它引发了他无法加载文件的异常。它说:无法打开图像'³.0':没有这样的文件或目录。在 Magick++ 文档中,它的编写方式就像我使用它一样。
有人能帮我吗?