Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setImageExtention (0.12 sec)

  1. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertTrue(filename.contains(docid));
        }
    
        // Test getImageFilename with custom settings
        public void test_getImageFilename_customSettings() {
            thumbnailManager.setImageExtention("jpg");
            thumbnailManager.setSplitSize(5);
            thumbnailManager.setSplitHashSize(20);
    
            String docid = "1234567890abcdef";
            String filename = thumbnailManager.getImageFilename(docid);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        }
    
        /**
         * Sets the image file extension for thumbnails.
         *
         * @param imageExtention the file extension to set
         */
        public void setImageExtention(final String imageExtention) {
            this.imageExtention = imageExtention;
        }
    
        /**
         * Sets the split size for directory organization.
         *
         * @param splitSize the split size to set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top