1
我如何可以更改以下列方式使用的圖像資源的大小:縮放GWT ImageBundle的圖像大小?
public static interface SelectionImages extends ImageBundle {
@Resource("image.png")
AbstractImagePrototype selectionAll();
}
我如何可以更改以下列方式使用的圖像資源的大小:縮放GWT ImageBundle的圖像大小?
public static interface SelectionImages extends ImageBundle {
@Resource("image.png")
AbstractImagePrototype selectionAll();
}
我不知道您是否想通過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
確實我打算在編譯之前設置/更改圖像大小。 – membersound