thumbnailator 是一個好用的圖像處理工具集,能夠用來處理縮略圖,功能全面,使用簡單,目前的版本是 0.4.6 。今天搜索了下開源中國,居然沒收錄這個工具(保留原文,此做備註:此處弄錯了,OSC中收錄了此工具並介紹),特推薦下。有須要的能夠從這裏下載:http://code.google.com/p/thumbnailator/,maven下也可使用。有了這麼好用的工具,就不用咱們再去造輪子了。 maven
先摘幾段網站原文API 測試,很簡單,一看就懂。 工具
解釋其中幾個: 測試
size(160, 160) 圖像的尺寸,寬,高 網站
rotate(90)旋轉90度 ui
watermark()加水印,在其中能夠指定水印的大小和水印圖 this
scale()縮放比例,scale(1.0f)爲不縮放 google
sourceRegion(int x,int ,y,int width,int height)在某位置切割圖片 spa
Thumbnails.of(new File("original.jpg")).size(160, 160).toFile(new File("thumbnail.jpg"));
In this example, the image from original.jpg is resized, and then saved to thumbnail.jpg. prototype
Alternatively, Thumbnailator will accept file names as a String. Using File objects to specify image files is not required: code
Thumbnails.of("original.jpg").size(160, 160.toFile("thumbnail.jpg");
This form can be useful when writing quick prototype code, or when Thumbnailator is being used from scripting languages.
Thumbnails.of(new File("original.jpg")).size(160, 160) .rotate(90).watermark(Positions.BOTTOM_RIGHT, ImageIO.read(new File("watermark.png")), 0.5f) .outputQuality(0.8f).toFile(new File("image-with-watermark.jpg"));
In this example, the image from original.jpg is resized, then rotated to clockwise by 90 degrees, then a watermark is placed at the bottom right-hand corner which is half transparent, then is saved to image-with-watermark.jpg with 80% compression quality settings.
OutputStream os = ...; Thumbnails.of("large-picture.jpg").size(200, 200).outputFormat("png").toOutputStream(os);
In this example, an image from the file large-picture.jpg is resized to a maximum dimension of 200 x 200 (maintaining the aspect ratio of the original image) and writes the that to the specified OutputStream as a PNG image.
BufferedImage originalImage = ImageIO.read(new File("original.png")); BufferedImage thumbnail = Thumbnails.of(originalImage).size(200, 200).asBufferedImage();
The above code takes an image in originalImage and creates a 200 pixel by 200 pixel thumbnail using and stores the result in thumbnail.
BufferedImage originalImage = ImageIO.read(new File("original.png")); BufferedImage thumbnail = Thumbnails.of(originalImage).scale(0.25f).asBufferedImage();
The above code takes the image in originalImage and creates a thumbnail that is 25% of the original image, and uses the default scaling technique in order to make the thumbnail which is stored in thumbnail.
BufferedImage originalImage = ImageIO.read(new File("original.jpg")); BufferedImage thumbnail = Thumbnails.of(originalImage) .size(200, 200).rotate(90).asBufferedImage();
The above code takes the original image and creates a thumbnail which is rotated clockwise by 90 degrees.
BufferedImage originalImage = ImageIO.read(new File("original.jpg")); BufferedImage watermarkImage = ImageIO.read(new File("watermark.png")); BufferedImage thumbnail = Thumbnails.of(originalImage).size(200, 200). watermark(Positions.BOTTOM_RIGHT, watermarkImage, 0.5f) .asBufferedImage();
As shown, a watermark can be added to an thumbnail by calling the watermark method.