- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for images (0.05 sec)
-
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
/** * HTML tag-based thumbnail generator that creates thumbnails from image content * referenced in HTML documents. This generator extracts images from HTML content * and processes them to create thumbnail images based on configured dimensions * and format settings. * * <p>The generator validates image MIME types, processes image data through * ImageIO operations, and applies scaling and cropping to generate thumbnails
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.5K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
&& checkFileType(uploadedFileName, fessConfig.getSupportedUploadedMediaExtentionsAsArray())) { uploadFile = new File(getServletContext().getRealPath("/images/" + fileName)); } else if (checkFileType(fileName, fessConfig.getSupportedUploadedCssExtentionsAsArray()) && checkFileType(uploadedFileName, fessConfig.getSupportedUploadedCssExtentionsAsArray())) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
Files.createDirectories(path.getParent()); Files.copy(zis, path, StandardCopyOption.REPLACE_EXISTING); } else if ("images".equals(names[0])) { names[0] = themeName; final Path path = ResourceUtil.getImagePath(names); Files.createDirectories(path.getParent());
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 7.1K bytes - Viewed (0) -
README.md
### Docker We provide Docker images on [ghcr.io](https://github.com/orgs/codelibs/packages). We also provide a Docker Compose (YAML) file in [this repository](https://github.com/codelibs/docker-fess/tree/master/compose). ### Browser UI - Search UI: http://localhost:8080/ 
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 00:28:33 UTC 2025 - 7.8K bytes - Viewed (2) -
src/main/resources/fess_config.properties
searchlog.process.batch_size=100 # Minimum width for HTML images in thumbnails. thumbnail.html.image.min.width=100 # Minimum height for HTML images in thumbnails. thumbnail.html.image.min.height=100 # Maximum aspect ratio for HTML images in thumbnails. thumbnail.html.image.max.aspect.ratio=3.0 # Width of generated thumbnail images. thumbnail.html.image.thumbnail.width=100 # Height of generated thumbnail images.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
CLAUDE.md
- **SMB/CIFS**: Windows shares (SMB1/SMB2+) - **Storage**: MinIO/S3-compatible ### Content Formats Office (Word, Excel, PowerPoint), PDF, Archives (ZIP, TAR, GZ), HTML, XML, JSON, Media (audio/video metadata), Images (EXIF/IPTC/XMP) --- ## Architecture ### Module Structure ``` fess-crawler-parent/ ├── fess-crawler/ # Core framework ├── fess-crawler-lasta/ # LastaFlute DI integration
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
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) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
import jakarta.servlet.ServletContext; /** * Job class for generating thumbnails for documents in the search engine. * This job executes the ThumbnailGenerator process as a separate JVM process * to create thumbnail images for supported document types. */ public class GenerateThumbnailJob extends ExecJob { /** Logger for this class. */ static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class);Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 11.7K bytes - Viewed (0) -
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)