Methods Summary |
---|
public static org.jaudiotagger.tag.images.AndroidImageHandler | getInstanceOf()
if(instance==null)
{
instance = new AndroidImageHandler();
}
return instance;
|
public boolean | isMimeTypeWritable(java.lang.String mimeType)
throw new UnsupportedOperationException();
|
public void | makeSmaller(Artwork artwork, int size)Resize image using Java 2D
throw new UnsupportedOperationException();
|
public void | reduceQuality(Artwork artwork, int maxSize)Resize the image until the total size require to store the image is less than maxsize
throw new UnsupportedOperationException();
|
public void | showReadFormats()Show read formats
On Windows supports png/jpeg/bmp/gif
throw new UnsupportedOperationException();
|
public void | showWriteFormats()Show write formats
On Windows supports png/jpeg/bmp
throw new UnsupportedOperationException();
|
public byte[] | writeImage(java.awt.image.BufferedImage bi, java.lang.String mimeType)Write buffered image as required format
throw new UnsupportedOperationException();
|
public byte[] | writeImageAsPng(java.awt.image.BufferedImage bi)
throw new UnsupportedOperationException();
|