gtkmm的Gdk :: Pixbuf :: create_from_file()支持哪些图像类型?

时间:2010-11-08 08:50:42

标签: image gtkmm

gtkmm的Gdk :: Pixbuf :: create_from_file()支持哪些图像类型?它是系统依赖的吗?

1 个答案:

答案 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的格式。