best way to add image to Layout

Someone can propose the best way to show a runtime image stored in the base64 database ?

You can use com.vaadin.flow.component.html.Image class:

String base64 = "your_base_64";
add(new Image(String.format("data:image/png;base64,%s", base64), "My image"));