Package com.idrsolutions.image.avif
Class AvifDecoder
java.lang.Object
com.idrsolutions.image.JDeliImage
com.idrsolutions.image.avif.AvifDecoder
- All Implemented Interfaces:
com.idrsolutions.image.Decoder
public class AvifDecoder
extends com.idrsolutions.image.JDeliImage
implements com.idrsolutions.image.Decoder
-
Field Summary
Fields inherited from class com.idrsolutions.image.JDeliImage
bb
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionread
(byte[] data) readDimension
(byte[] data) Decodes and returns the width and height of avif imagereadDimension
(File file) Decodes and returns the width and height of avif imagereadExif
(byte[] data) Decodes and returns the Exif data as IFD format if there is an IFDdata otherwise returns nullDecodes and returns the Exif data as IFD format if there is an IFDdata otherwise returns nullMethods inherited from class com.idrsolutions.image.JDeliImage
optimiseImage
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.idrsolutions.image.Decoder
getImageCount, getImageCount, readEmbeddedThumbnail, readEmbeddedThumbnail, readImageAt, readImageAt, readImageSpecificMetaData, readImageSpecificMetaData, setMetadata
-
Constructor Details
-
AvifDecoder
public AvifDecoder()
-
-
Method Details
-
read
- Specified by:
read
in interfacecom.idrsolutions.image.Decoder
- Parameters:
data
- source image to read- Returns:
- image contained in raw data
- Throws:
Exception
- if problem reading image
-
read
- Specified by:
read
in interfacecom.idrsolutions.image.Decoder
- Parameters:
file
- source image to read- Returns:
- image contained in raw data
- Throws:
Exception
- if problem reading image
-
readDimension
Decodes and returns the width and height of avif image- Specified by:
readDimension
in interfacecom.idrsolutions.image.Decoder
- Parameters:
file
- image image contained in raw data if present- Returns:
- width and height of image
- Throws:
Exception
- if problem reading image
-
readDimension
Decodes and returns the width and height of avif image- Specified by:
readDimension
in interfacecom.idrsolutions.image.Decoder
- Parameters:
data
- image image contained in raw data if present- Returns:
- Rectangle width and height of image
- Throws:
Exception
- if problem reading image
-
readExif
Decodes and returns the Exif data as IFD format if there is an IFDdata otherwise returns null- Parameters:
file
- image image contained in raw data if present- Returns:
- BufferedImage thumbnail image
- Throws:
Exception
- if problem reading image
-
readExif
Decodes and returns the Exif data as IFD format if there is an IFDdata otherwise returns null- Parameters:
data
- image image contained in raw data if present- Returns:
- BufferedImage thumbnail image
- Throws:
Exception
- if problem reading image
-