コード例 #1
0
ファイル: ImageInfo.java プロジェクト: helma-next/helma-next
 private static void printCompact(String sourceName, ImageInfo imageInfo) {
   System.out.println(
       imageInfo.getFormatName()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getMimeType()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getWidth()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getHeight()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getBitsPerPixel()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getNumberOfImages()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getPhysicalWidthDpi()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getPhysicalHeightDpi()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getPhysicalWidthInch()
           + ";"
           + //$NON-NLS-1$
           imageInfo.getPhysicalHeightInch()
           + ";"
           + //$NON-NLS-1$
           imageInfo.isProgressive());
 }
コード例 #2
0
ファイル: ImageInfo.java プロジェクト: helma-org/helma
 private static void printVerbose(String sourceName, ImageInfo ii) {
   printLine(0, null, sourceName);
   printLine(1, "File format: ", ii.getFormatName());
   printLine(1, "MIME type: ", ii.getMimeType());
   printLine(1, "Width (pixels): ", ii.getWidth(), 1);
   printLine(1, "Height (pixels): ", ii.getHeight(), 1);
   printLine(1, "Bits per pixel: ", ii.getBitsPerPixel(), 1);
   printLine(1, "Progressive: ", Boolean.toString(ii.isProgressive()));
   printLine(1, "Number of images: ", ii.getNumberOfImages(), 1);
   printLine(1, "Physical width (dpi): ", ii.getPhysicalWidthDpi(), 1);
   printLine(1, "Physical height (dpi): ", ii.getPhysicalHeightDpi(), 1);
   printLine(1, "Physical width (inches): ", ii.getPhysicalWidthInch(), 1.0f);
   printLine(1, "Physical height (inches): ", ii.getPhysicalHeightInch(), 1.0f);
   int numComments = ii.getNumberOfComments();
   printLine(1, "Number of textual comments: ", numComments, 1);
   if (numComments > 0) {
     for (int i = 0; i < numComments; i++) {
       printLine(2, null, ii.getComment(i));
     }
   }
 }
コード例 #3
0
ファイル: ImageInfo.java プロジェクト: helma-next/helma-next
 private static void printVerbose(String sourceName, ImageInfo ii) {
   printLine(0, null, sourceName);
   printLine(1, Messages.getString("ImageInfo.1"), ii.getFormatName()); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.2"), ii.getMimeType()); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.3"), ii.getWidth(), 1); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.4"), ii.getHeight(), 1); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.5"), ii.getBitsPerPixel(), 1); // $NON-NLS-1$
   printLine(
       1, Messages.getString("ImageInfo.6"), Boolean.toString(ii.isProgressive())); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.7"), ii.getNumberOfImages(), 1); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.8"), ii.getPhysicalWidthDpi(), 1); // $NON-NLS-1$
   printLine(1, Messages.getString("ImageInfo.9"), ii.getPhysicalHeightDpi(), 1); // $NON-NLS-1$
   printLine(
       1, Messages.getString("ImageInfo.10"), ii.getPhysicalWidthInch(), 1.0f); // $NON-NLS-1$
   printLine(
       1, Messages.getString("ImageInfo.11"), ii.getPhysicalHeightInch(), 1.0f); // $NON-NLS-1$
   int numComments = ii.getNumberOfComments();
   printLine(1, Messages.getString("ImageInfo.12"), numComments, 1); // $NON-NLS-1$
   if (numComments > 0) {
     for (int i = 0; i < numComments; i++) {
       printLine(2, null, ii.getComment(i));
     }
   }
 }