Google Code Exporter
Google Code Exporter
``` I want to resize a png file in following code: Thumbnails.of(srcImg).size(width, height).toFile(optImg) But all transparent background turns to black. See the attach What should I do? thumbnailator-0.4.0 in sun/oracle...
``` Problem ------- * Currently, Thumbnailator does not have good support for large image files. For example, there is no protection against running out of memory, and this behavior is...
``` Add an option to keep exif data ``` Original issue reported on code.google.com by `[email protected]` on 17 Aug 2013 at 6:49
``` Currently, Thumbnailator does not support animated GIFs. As seen from the star count in Issue 30 (as of February 23, 2014, there are 7) there is a lot of...
``` In one use case, multiple thumbnails of various sizes are made from a single original. Currently, the static interface will presumably (?) need to read the source file, which...
``` What steps will reproduce the problem? 1. original file 1.png file size is 371KB 2. after resized by thumbnailtor, the file size is 553KB 3. the option I tried...
``` There are going to be cases where one would like to process images in nested directories. Currently, handing a directory into the `Thumbnails.of(File...)` method will cause an exception to...
``` What steps will reproduce the problem? 1. load a monochrome image using ImageIO 2. something like: thumb = Thumbnails.of(img).scale(0.1).asBufferedImage(); 3. save thumbnail using ImageIO What is the expected output?...
``` The filename of thumbnails appears inconsistent if your input and output file types are different. Thumbnails.of(testFile) .size(100, 100) .outputFormat("jpg") .toFiles(Rename.SUFFIX_HYPHEN_THUMBNAIL); i.e. If you create a jpeg thumbnail for a...
``` Well, this is not an issue. It's a request for enhancement. Many JPG files (particully the big one), already have an embedded thumbnail in the EXIF. Would you please...