I use PDE and RCP. My tool has a splash image located in splash.bmp. In the build.properties I include the image into bin.includes
(bin.includes = splash.bmp
). In the app.product
file I have the following code:
<splash startupProgressRect="5,275,445,15" />
<launcher name="app">
<linux icon="/icons/running.xpm"/>
<win useIco="false">
<bmp/>
</win>
</launcher>
I want to replace the splash.bmp
with the splash.svg
. I tried to replace <bmp/>
with <svg/>
but it did not work. Is it something that possible to do with Eclipse Photon?
EDIT: My custom splash handler:
public class MySplashHandler extends EclipseSplashHandler {
private Image image;
public ApplicationSplashHandler() {
super();
}
@Override
public void init(final Shell splash) {
super.init(splash);
}
}
How can I load the svg?