1

如何更改以下列方式使用的图像资源的大小:

 public static interface SelectionImages extends ImageBundle {
            @Resource("image.png")
            AbstractImagePrototype selectionAll();
    }
4

1 回答 1

1

我不确定您是尝试在运行时更改大小还是通过 GWT 代码在编译时更改大小。

1)您可以设置/更改图像的宽度/高度属性,如下所述 -

http://code.google.com/p/google-web-toolkit/wiki/ImageResource
https://developers.google.com/web-toolkit/doc/latest/DevGuideUiImageBundles

2)缩放图像 - http://fvisticot.blogspot.in/2010/01/scalable-image-with-gwt20-and.html(这有点过时但使用的原理类似)

3)缩放与图像调整大小不同 - https://groups.google.com/forum/?fromgroups=#!topic/google-web-toolkit/a88J6-sixW0

于 2012-12-10T04:17:28.283 回答