public interface ImagingService
Modifier and Type | Method and Description |
---|---|
PictureView |
computeViewFor(Blob blob,
PictureTemplate pictureTemplate,
boolean convert)
|
PictureView |
computeViewFor(Blob blob,
PictureTemplate pictureTemplate,
ImageInfo imageInfo,
boolean convert)
|
List<PictureView> |
computeViewsFor(Blob blob,
List<PictureTemplate> pictureTemplates,
boolean convert)
|
List<PictureView> |
computeViewsFor(Blob blob,
List<PictureTemplate> pictureTemplates,
ImageInfo imageInfo,
boolean convert)
|
List<List<PictureView>> |
computeViewsFor(List<Blob> blobs,
List<PictureTemplate> pictureTemplates,
boolean convert)
|
List<List<PictureView>> |
computeViewsFor(List<Blob> blobs,
List<PictureTemplate> pictureTemplates,
ImageInfo imageInfo,
boolean convert)
|
Blob |
crop(Blob blob,
int x,
int y,
int width,
int height)
Crops an image.
|
String |
getConfigurationValue(String configurationName)
Returns the value a configuration which name is received as parameter.
|
String |
getConfigurationValue(String configurationName,
String defaultValue)
Returns the value a configuration which name is received as parameter.
|
ImageInfo |
getImageInfo(Blob blob)
|
Map<String,Object> |
getImageMetadata(Blob blob)
Retrieves metadata from an image contained in a
Blob . |
String |
getImageMimeType(Blob blob)
Returns the mime-type for the given Blob
|
String |
getImageMimeType(File file)
Returns the mime-type for the given file.
|
String |
getImageMimeType(InputStream in)
Deprecated.
since 5.5
|
Blob |
resize(Blob blob,
String finalFormat,
int width,
int height,
int depth)
Resizes image.
|
Blob |
rotate(Blob blob,
int angle)
Rotates an image.
|
void |
setConfigurationValue(String configurationName,
String configurationValue)
Sets the value of a configuration which could be used by the
ImagingService.
|
Blob rotate(Blob blob, int angle)
blob
- a Blob containing the imageangle
- the angle of the rotationMap<String,Object> getImageMetadata(Blob blob)
Blob
.String getImageMimeType(Blob blob)
@Deprecated String getImageMimeType(InputStream in)
ImageInfo getImageInfo(Blob blob)
ImageInfo
of the Blob
that is received as
parameter.
The information provided by the ImageInfo, like width, height or format, is obtained using ImageMagick (see http://www.imagemagick.org/script/index.php for more details on ImageMagick).
blob
- the blob of a pictureImageInfo
of a blobString getConfigurationValue(String configurationName)
configurationName
- the name of the configurationString getConfigurationValue(String configurationName, String defaultValue)
configurationName
- the name of the configurationdefaultValue
- the value of the configurationvoid setConfigurationValue(String configurationName, String configurationValue)
configurationName
- the name of the configurationconfigurationValue
- the value of the configurationPictureView computeViewFor(Blob blob, PictureTemplate pictureTemplate, boolean convert) throws IOException, ClientException
convert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)IOException
ClientException
PictureView computeViewFor(Blob blob, PictureTemplate pictureTemplate, ImageInfo imageInfo, boolean convert) throws IOException, ClientException
imageInfo
- the ImageInfo
to use when computing the viewconvert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)IOException
ClientException
List<PictureView> computeViewsFor(Blob blob, List<PictureTemplate> pictureTemplates, boolean convert) throws IOException, ClientException
convert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)PictureView
sIOException
ClientException
List<PictureView> computeViewsFor(Blob blob, List<PictureTemplate> pictureTemplates, ImageInfo imageInfo, boolean convert) throws IOException, ClientException
imageInfo
- the ImageInfo
to use when computing the viewconvert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)PictureView
sIOException
ClientException
List<List<PictureView>> computeViewsFor(List<Blob> blobs, List<PictureTemplate> pictureTemplates, boolean convert) throws IOException, ClientException
convert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)IOException
ClientException
List<List<PictureView>> computeViewsFor(List<Blob> blobs, List<PictureTemplate> pictureTemplates, ImageInfo imageInfo, boolean convert) throws IOException, ClientException
imageInfo
- the ImageInfo
to use when computing the viewconvert
- true if the blob
is converted to fit each
PictureTemplate
, false if the blob
is put as
it in the PictureView (without any conversion)IOException
ClientException
Copyright © 2013 Nuxeo SA. All Rights Reserved.