I use vaadin 7.5.3 I want to add logo my web site page top with logo Url : http://...../example.png
But I want to read image on internet URL
You can use ExternalResource
with the Image
component to display an image from an external URL:
Image image = new Image();
image.setSource(new ExternalResource("http://www.maski.gov.tr/Maski.PNG"));