]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Javadocs
authorJeremias Maerki <jeremias@apache.org>
Mon, 24 Jan 2005 09:13:34 +0000 (09:13 +0000)
committerJeremias Maerki <jeremias@apache.org>
Mon, 24 Jan 2005 09:13:34 +0000 (09:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@198298 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/image/FopImage.java

index ee81539d13e308df172830fcd70891747e19208c..153947cc9c14f87b7cf98ffc18893440597c83f1 100644 (file)
@@ -168,13 +168,21 @@ public interface FopImage {
      * Information loaded from analyser and passed to image object.
      */
     public static class ImageInfo {
+        /** InputStream to load the image from */
         public InputStream inputStream;
+        /** image width (in pixels) */
         public int width;
+        /** image height (in pixels) */
         public int height;
+        /** horizontal bitmap resolution (in dpi) */
         public double dpiHorizontal = 72.0f;
+        /** vertical bitmap resolution (in dpi) */
         public double dpiVertical = 72.0f;
+        /** implementation-specific data object (ex. a SVG DOM for SVG images) */
         public Object data;
+        /** MIME type of the image */
         public String mimeType;
+        /** implementation-specific String (ex. the namespace for XML-based images) */
         public String str;
     }