- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for BaseThumbnailGenerator (0.42 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
/** * Abstract base class for thumbnail generators. * Provides common functionality for thumbnail generation implementations. */ public abstract class BaseThumbnailGenerator implements ThumbnailGenerator { private static final Logger logger = LogManager.getLogger(BaseThumbnailGenerator.class); /** Map of conditions for thumbnail generation. */ protected final Map<String, String> conditionMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
* ImageIO operations, and applies scaling and cropping to generate thumbnails * that meet the specified size requirements.</p> * */ public class HtmlTagBasedGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(HtmlTagBasedGenerator.class); /** * Default constructor for HtmlTagBasedGenerator. */ public HtmlTagBasedGenerator() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
* Command-based thumbnail generator that executes external commands to create thumbnails. * Uses external tools through command execution to generate thumbnail images from documents. */ public class CommandGenerator extends BaseThumbnailGenerator { private static final Logger logger = LogManager.getLogger(CommandGenerator.class); /** List of command strings to execute for thumbnail generation. */ protected List<String> commandList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Fri Jul 18 14:34:06 UTC 2025 - 14.7K bytes - Viewed (0)