summaryrefslogtreecommitdiff
path: root/reportbuilder/java/com/sun/star/report/ImageService.java
diff options
context:
space:
mode:
Diffstat (limited to 'reportbuilder/java/com/sun/star/report/ImageService.java')
-rw-r--r--reportbuilder/java/com/sun/star/report/ImageService.java14
1 files changed, 12 insertions, 2 deletions
diff --git a/reportbuilder/java/com/sun/star/report/ImageService.java b/reportbuilder/java/com/sun/star/report/ImageService.java
index 193b97d66d58..a407164d965a 100644
--- a/reportbuilder/java/com/sun/star/report/ImageService.java
+++ b/reportbuilder/java/com/sun/star/report/ImageService.java
@@ -40,23 +40,33 @@ public interface ImageService
{
/**
+ * @param image
* @return the mime-type of the image as string.
+ * @throws ReportExecutionException
*/
String getMimeType(final InputStream image) throws ReportExecutionException;
/**
+ * @param image
* @return the mime-type of the image as string.
+ * @throws ReportExecutionException
*/
String getMimeType(final byte[] image) throws ReportExecutionException;
/**
+ * @param image
* @returns the dimension in 100th mm.
- **/
+ *
+ * @throws ReportExecutionException
+ * @return*/
Dimension getImageSize(final InputStream image) throws ReportExecutionException;
/**
+ * @param image
* @returns the dimension in 100th mm.
- **/
+ *
+ * @throws ReportExecutionException
+ * @return*/
Dimension getImageSize(final byte[] image) throws ReportExecutionException;
}