Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for ximage (4.48 sec)

  1. src/main/assemblies/files/generate-thumbnail

        "image/png")  format_hint="png:" ;;
        "image/jpeg") format_hint="jpeg:" ;;
        "image/bmp"|"image/x-windows-bmp"|"image/x-ms-bmp") format_hint="bmp:" ;;
        "image/vnd.adobe.photoshop"|"image/photoshop"|"application/x-photoshop"|"application/photoshop") format_hint="psd:" ;;
      esac
      ${im_cmd} -thumbnail ${image_size} "${format_hint}${target_file}" "${output_file}"
    elif [[ x"${cmd_type}" = "x" ]] ; then
      echo "No filetype."
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/webapp/images/noimage.png

    noimage.png...
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Jun 02 14:28:59 UTC 2017
    - 1.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

        }
    
        /**
         * Determines the MIME type of an image file based on its file extension.
         *
         * @param imageFile the image file
         * @return the MIME type string
         */
        protected String getImageMimeType(final File imageFile) {
            final String path = imageFile.getAbsolutePath();
            if (path.endsWith(".png")) {
                return "image/png";
            }
            if (path.endsWith(".gif")) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

        /**
         * Gets the list of images associated with this URL.
         * @return the list of images, or an empty list if none
         */
        public List<SitemapImage> getImages() {
            if (images == null) {
                images = new ArrayList<>();
            }
            return images;
        }
    
        /**
         * Adds an image to this sitemap URL.
         * @param image the image to add
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapImage.java

    import java.io.Serializable;
    
    /**
     * Represents an image entry within a sitemap URL.
     * This class encapsulates the properties of an image as defined in the Google Image Sitemap extension.
     *
     * <p>
     * The image extension allows you to provide additional information about images on your pages.
     * This can help Google index your images and display them in Google Images search results.
     * </p>
     *
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                return true;
            }
    
            return switch (mimeType) {
            case "image/png", "image/gif", "image/jpeg", "image/bmp" -> true;
            default -> false;
            };
        }
    
        /**
         * Processes and saves an image from the input stream to the output file as a thumbnail.
         *
         * <p>This method reads image data, validates dimensions, applies subsampling and scaling
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

            final SitemapImage image = sitemapUrl.getImages().get(0);
            assertEquals("http://www.example.com/image.jpg", image.getLoc());
            assertEquals("Sample image caption", image.getCaption());
            assertEquals("Sample image title", image.getTitle());
            assertEquals("Tokyo, Japan", image.getGeoLocation());
            assertEquals("http://www.example.com/license.txt", image.getLicense());
        }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 36.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            }
            return false;
        }
    
        /**
         * Gets the image filename for a document based on its document map.
         *
         * @param docMap the document data map
         * @return the generated image filename
         */
        protected String getImageFilename(final Map<String, Object> docMap) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

        }
    
        /**
         * Gets the path to image files directory.
         *
         * @param names the path components to append to the images directory
         * @return the Path object pointing to the images directory
         */
        public static Path getImagePath(final String... names) {
            return getPath(StringUtil.EMPTY, "images", names);
        }
    
        /**
         * Gets the path to CSS files directory.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            }
            return switch (mimeType) {
            case "image/gif" -> ".gif";
            case "image/tiff" -> ".tiff";
            case "image/svg+xml" -> ".svg";
            case "image/jpeg" -> ".jpg";
            case "image/png" -> ".png";
            case "image/bmp", "image/x-windows-bmp", "image/x-ms-bmp" -> ".bmp";
            case "image/vnd.adobe.photoshop", "image/photoshop", "application/x-photoshop", "application/photoshop" -> ".psd";
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top