1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 package com.sun.star.report; 24 25 import java.awt.Dimension; 26 27 import java.io.InputStream; 28 29 /** 30 * 31 * @author oj93728 32 */ 33 public interface ImageService 34 { 35 36 /** 37 * @param image 38 * @return the mime-type of the image as string. 39 * @throws ReportExecutionException 40 */ getMimeType(final InputStream image)41 String getMimeType(final InputStream image) throws ReportExecutionException; 42 43 /** 44 * @param image 45 * @return the mime-type of the image as string. 46 * @throws ReportExecutionException 47 */ getMimeType(final byte[] image)48 String getMimeType(final byte[] image) throws ReportExecutionException; 49 50 /** 51 * @param image 52 * @returns the dimension in 100th mm. 53 * 54 * @throws ReportExecutionException 55 * @return*/ getImageSize(final InputStream image)56 Dimension getImageSize(final InputStream image) throws ReportExecutionException; 57 58 /** 59 * @param image 60 * @returns the dimension in 100th mm. 61 * 62 * @throws ReportExecutionException 63 * @return*/ getImageSize(final byte[] image)64 Dimension getImageSize(final byte[] image) throws ReportExecutionException; 65 } 66 67