public interface CameraImage
Modifier and Type | Method and Description |
---|---|
Response |
getData(java.io.OutputStream outputStream)
Writes image data to a stream.
|
java.util.Date |
getDateTime()
Returns the date and time of image creation.
|
ImageFormat |
getFormat()
Returns the format of the image.
|
java.lang.String |
getName()
Returns the name of the image.
|
CameraStorage |
getStorage()
Returns the storage having the image
|
Response |
getThumbnail(java.io.OutputStream outputStream)
Writes thumbnail data to a stream.
|
ImageType |
getType()
Returns the type of the image.
|
boolean |
hasThumbnail()
Returns
true if a thumbnail can be acquired. |
java.lang.String getName()
ImageType getType()
ImageFormat getFormat()
java.util.Date getDateTime()
null
if the image does not have the date and time of image creationboolean hasThumbnail()
true
if a thumbnail can be acquired.true
If a thumbnail can be acquired and false
otherwiseCameraStorage getStorage()
Response getData(java.io.OutputStream outputStream) throws java.io.IOException
outputStream
- The written streamjava.io.IOException
- If an output exception occurredResponse getThumbnail(java.io.OutputStream outputStream) throws java.io.IOException
outputStream
- The written streamjava.io.IOException
- If an output exception occurred