1
2
3
4 package org.rcfaces.core.image;
5
6 import org.rcfaces.core.internal.contentAccessor.IGeneratedResourceInformation;
7
8
9
10
11
12
13 public interface IGeneratedImageInformation extends
14 IGeneratedResourceInformation {
15
16 String WIDTH_PROPERTY = "org.rfcaces.core.model.WIDTH";
17
18 String HEIGHT_PROPERTY = "org.rfcaces.core.model.HEIGHT";
19
20 String ENCODER_MIME_TYPE_PROPERTY = "org.rcfaces.encoder.MIME_TYPE";
21
22
23
24 void setImageHeight(int imageHeight);
25
26 void setImageWidth(int imageWidth);
27
28 String getEncoderMimeType();
29
30 void setEncoderMimeType(String mimeType);
31 }