Package org.apache.commons.imaging
Interface ImageFormat
-
- All Known Implementing Classes:
ImageFormats
public interface ImageFormat
Simple image format interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDefaultExtension()
java.lang.String[]
getExtensions()
Get the file extension associated with thisImageFormat
.java.lang.String
getName()
Get the name of thisImageFormat
.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Get the name of thisImageFormat
.- Returns:
- String name
-
getExtensions
java.lang.String[] getExtensions()
Get the file extension associated with thisImageFormat
.- Returns:
- String extension
-
getDefaultExtension
java.lang.String getDefaultExtension()
-
-