All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webswing.ext.services.ImageService Maven / Gradle / Ivy

There is a newer version: 20.2.4
Show newest version
package org.webswing.ext.services;

import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;

import org.webswing.common.WindowDecoratorTheme;

public interface ImageService {

	byte[] getPngImage(BufferedImage image);

	WindowDecoratorTheme getWindowDecorationTheme();

	void moveFile(File srcFile, File destFile) throws IOException;

	Image readFromDataUrl(String img);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy