从GJS中的资源加载Gtk.Image

时间:2017-09-01 04:19:53

标签: gtk gnome gjs

我正在尝试从资源加载Gtk.Image,但我无法弄清楚我做错了什么。

我的gresource.xml中有png

<?xml version="1.0" encoding="UTF-8"?>
<gresources>
  <gresource prefix="/com/mydomain/MyApp">
    <file preprocess="xml-stripblanks">app-menu.ui</file>
    <file preprocess="xml-stripblanks">main.ui</file>
    <file>application.css</file>
    <file>logo.svg.png</file>
  </gresource>
</gresources>

我正试图像这样加载那个png:

let imgWidget = new Gtk.Image();
imgWidget.set_from_resource('resource:///com/mydomain/MyApp/logo.svg.png');

但我总是得到一张破碎的图像。

1 个答案:

答案 0 :(得分:0)

正如niyasc指出的那样,我不得不删除资源://前缀