How to display buffered image in vaadin?
I want to display buffered image in image view with vaadin.
So , I followed this Tutorial from vaadin site .But, it not done.
main.java
package com.example;
import com.vaadin.flow.component.html.Image;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.router.Route;
import com.vaadin.flow.server.InputStreamFactory;
import com.vaadin.flow.server.StreamResource;
@Route
public class MainView extends VerticalLayout…
Top comments (0)