gtkmm的Gdk :: Pixbuf :: create_from_file()支持哪些图像类型?它是系统依赖的吗?
答案 0 :(得分:3)
vector<Gdk::PixbufFormat> list = Gdk::Pixbuf::get_formats();
vector<Gdk::PixbufFormat>::const_iterator it;
for (it = list.begin(); it!=list.end(); it++)
{
cout << it->get_name();
cout << " - ";
cout<< it->get_description();
cout << endl;
}
上面列出了所有可用于Pixbufs的格式。