You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pdfbox.apache.org by ti...@apache.org on 2016/03/11 17:24:59 UTC

svn commit: r1734590 - /pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java

Author: tilman
Date: Fri Mar 11 16:24:59 2016
New Revision: 1734590

URL: http://svn.apache.org/viewvc?rev=1734590&view=rev
Log:
PDFBOX-2852: fix javadoc

Modified:
    pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java

Modified: pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java
URL: http://svn.apache.org/viewvc/pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java?rev=1734590&r1=1734589&r2=1734590&view=diff
==============================================================================
--- pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java (original)
+++ pdfbox/trunk/tools/src/main/java/org/apache/pdfbox/tools/imageio/ImageIOUtil.java Fri Mar 11 16:24:59 2016
@@ -58,7 +58,7 @@ public final class ImageIOUtil
      * @param image the image to be written
      * @param filename used to construct the filename for the individual image.
      * Its suffix will be used as the image format.
-     * @param dpi the resolution in dpi (dots per inch)
+     * @param dpi the resolution in dpi (dots per inch) to be used in metadata
      * @return true if the image file was produced, false if there was an error.
      * @throws IOException if an I/O error occurs
      */
@@ -88,7 +88,7 @@ public final class ImageIOUtil
      * for the filename
      * @param filename used to construct the filename for the individual image.
      * The formatName parameter will be used as the suffix.
-     * @param dpi the resolution in dpi (dots per inch)
+     * @param dpi the resolution in dpi (dots per inch) to be used in metadata
      * @return true if the image file was produced, false if there was an error.
      * @throws IOException if an I/O error occurs
      * @deprecated use
@@ -136,7 +136,7 @@ public final class ImageIOUtil
      * @param image the image to be written
      * @param formatName the target format (ex. "png")
      * @param output the output stream to be used for writing
-     * @param dpi resolution to be used when writing the image
+     * @param dpi the resolution in dpi (dots per inch) to be used in metadata
      * @return true if the image file was produced, false if there was an error.
      * @throws IOException if an I/O error occurs
      */
@@ -157,7 +157,7 @@ public final class ImageIOUtil
      * @param image the image to be written
      * @param formatName the target format (ex. "png")
      * @param output the output stream to be used for writing
-     * @param dpi resolution to be used when writing the image
+     * @param dpi the resolution in dpi (dots per inch) to be used in metadata
      * @param quality quality to be used when compressing the image (0 <
      * quality < 1.0f)
      * @return true if the image file was produced, false if there was an error.