All Projects → coobird → Thumbnailator

coobird / Thumbnailator

Licence: mit
Thumbnailator - a thumbnail generation library for Java

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Thumbnailator

Image processing
High-level image processing wrapper for libvips and ImageMagick/GraphicsMagick
Stars: ✭ 600 (-84.4%)
Mutual labels:  image-processing, thumbnails
Java Thumbnailer
An extensible java library to create thumbnails of different file types (image, text)
Stars: ✭ 45 (-98.83%)
Mutual labels:  image-processing, thumbnails
Node S3 Uploader
Flexible and efficient resize, rename, and upload images to Amazon S3 disk storage. Uses the official AWS Node SDK for transfer, and ImageMagick for image processing. Support for multiple image versions targets.
Stars: ✭ 237 (-93.84%)
Mutual labels:  image-processing, thumbnails
Sewar
All image quality metrics you need in one package.
Stars: ✭ 299 (-92.22%)
Mutual labels:  image-processing
Dali
A GPU-accelerated library containing highly optimized building blocks and an execution engine for data processing to accelerate deep learning training and inference applications.
Stars: ✭ 3,624 (-5.75%)
Mutual labels:  image-processing
Artificio
Deep Learning Computer Vision Algorithms for Real-World Use
Stars: ✭ 326 (-91.52%)
Mutual labels:  image-processing
Image pipeline
An image processing pipeline for ROS.
Stars: ✭ 343 (-91.08%)
Mutual labels:  image-processing
Segmentation models.pytorch
Segmentation models with pretrained backbones. PyTorch.
Stars: ✭ 4,584 (+19.22%)
Mutual labels:  image-processing
Opence
Contrast Enhancement Techniques for low-light images
Stars: ✭ 333 (-91.34%)
Mutual labels:  image-processing
Stegano
A pure Python steganography module.
Stars: ✭ 324 (-91.57%)
Mutual labels:  image-processing
Medpy
Medical image processing in Python
Stars: ✭ 321 (-91.65%)
Mutual labels:  image-processing
Exifcleaner
Cross-platform desktop GUI app to clean image metadata
Stars: ✭ 305 (-92.07%)
Mutual labels:  image-processing
Face recognition
🍎 My own face recognition with deep neural networks.
Stars: ✭ 328 (-91.47%)
Mutual labels:  image-processing
Tinify Nodejs
Node.js client for the Tinify API.
Stars: ✭ 299 (-92.22%)
Mutual labels:  image-processing
Filter.js
Filter.js: Video and Image Processing and Computer Vision Library in pure JavaScript (Browser and Node.js)
Stars: ✭ 335 (-91.29%)
Mutual labels:  image-processing
Bild
Image processing algorithms in pure Go
Stars: ✭ 3,431 (-10.77%)
Mutual labels:  image-processing
Imgtoascii
A JavaScript implementation of a image to Ascii code
Stars: ✭ 331 (-91.39%)
Mutual labels:  image-processing
Chonky
😸 A File Browser component for React.
Stars: ✭ 313 (-91.86%)
Mutual labels:  thumbnails
Jekyll Gallery Generator
A Jekyll plugin that generates photo galleries from directories full of images.
Stars: ✭ 315 (-91.81%)
Mutual labels:  image-processing
Skeptick
Better ImageMagick for Ruby
Stars: ✭ 326 (-91.52%)
Mutual labels:  image-processing

December 5, 2021: Thumbnailator 0.4.15 has been released! See Changes for details.

Thumbnailator is now available through Maven!

What is Thumbnailator?

Thumbnailator is a thumbnail generation library for Java.

Why Thumbnailator?

Making high-quality thumbnails in Java can be a fairly difficult task.

Learning how to use the Image I/O API, Java 2D API, image processing, image scaling techniques, ... but fear not! Thumbnailator will take care of all those things for you!

Thumbnailator is a single JAR file with no dependencies to external libraries, making development and deployment simple and easy. It is also available on the Maven Central Repository for easy inclusion in Maven projects.

How simple is Thumbnailator?

Thumbnailator's fluent interface can be used to perform fairly complicated thumbnail processing task in one simple step.

For example, creating JPEG thumbnails of image files in a directory, all resized to a maximum dimension of 640 pixels by 480 pixels while preserving the aspect ratio of the original image can be performed by the following:

Thumbnails.of(new File("path/to/directory").listFiles())
    .size(640, 480)
    .outputFormat("jpg")
    .toFiles(Rename.PREFIX_DOT_THUMBNAIL);

The fluent interface provided by the Thumbnailator simplifies the task of making thumbnails into a single method call!

No need to access the Image I/O API and manually manipulate BufferedImages through Graphics2D objects. Thumbnailator does all of that for you.

What can Thumbnailator do?

The following pages have more information on what Thumbnailator can do:

Disclaimer

Thumbnailator is still early in its development, and the APIs are subject to change at any time.

License

Thumbnailtor is released under the MIT License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].