public interface IImageFactory
Modifier and Type | Method and Description |
---|---|
IBufferedImage |
createBufferedImage(int width,
int height)
Creates an buffered image with defined with and height.
|
IImage |
createImage(java.io.File file)
Creates an image from an file.
|
IImage |
createImage(IFactory<java.io.InputStream> inputStream)
Creates an image from an input stream factory.
|
IImage |
createImage(java.net.URL url)
Creates an image from an url.
|
IImage createImage(java.io.File file)
file
- The file that holds the imageIImage createImage(java.net.URL url)
url
- The url to create the image fromIImage createImage(IFactory<java.io.InputStream> inputStream)
inputStream
- A factory for an input streamIBufferedImage createBufferedImage(int width, int height)
width
- The width of the imageheight
- The height of the imageSiehe auch Jowidgets Nutzerhandbuch