java使用Thumbnailator操作圖片

來源:互聯網
上載者:User

標籤:buffered   aspect   download   row   st3   一個   ota   中心   stream   

Thumbnailator 是一個用來產生映像縮圖、裁切、旋轉、添加浮水印等操作的 Java 類庫,通過很簡單的代碼即可產生圖片縮圖,也可直接對一整個目錄的圖片產生縮圖。

Thumbnailator對圖片的簡單作業碼如下:

 

import java.awt.image.BufferedImage;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.OutputStream;import javax.imageio.ImageIO;import net.coobird.thumbnailator.Thumbnails;import net.coobird.thumbnailator.geometry.Positions;/** *  * @author yaohucaizi *  */public class ThumbnailatorTest {    /**     *      * @param args     * @throws IOException     */    public static void main(String[] args) throws IOException {        ThumbnailatorTest thumbnailatorTest = new ThumbnailatorTest();        thumbnailatorTest.test1();        thumbnailatorTest.test2();        thumbnailatorTest.test3();        thumbnailatorTest.test4();        thumbnailatorTest.test5();        thumbnailatorTest.test6();        thumbnailatorTest.test7();        thumbnailatorTest.test8();        thumbnailatorTest.test9();    }    /**     * 指定大小進行縮放     *      * @throws IOException     */    private void test1() throws IOException {        /*         * size(width,height) 若圖片橫比200小,高比300小,不變         * 若圖片橫比200小,高比300大,高縮小到300,圖片比例不變 若圖片橫比200大,高比300小,橫縮小到200,圖片比例不變         * 若圖片橫比200大,高比300大,圖片按比例縮小,橫為200或高為300         */        Thumbnails.of("images/test.jpg").size(200, 300).toFile(                "C:/image_200x300.jpg");        Thumbnails.of("images/test.jpg").size(2560, 2048).toFile(                "C:/image_2560x2048.jpg");    }    /**     * 按照比例進行縮放     *      * @throws IOException     */    private void test2() throws IOException {        /**         * scale(比例)         */        Thumbnails.of("images/test.jpg").scale(0.25f)                .toFile("C:/image_25%.jpg");        Thumbnails.of("images/test.jpg").scale(1.10f).toFile(                "C:/image_110%.jpg");    }    /**     * 不按照比例,指定大小進行縮放     *      * @throws IOException     */    private void test3() throws IOException {        /**         * keepAspectRatio(false) 預設是按照比例縮放的         */        Thumbnails.of("images/test.jpg").size(120, 120).keepAspectRatio(false)                .toFile("C:/image_120x120.jpg");    }    /**     * 旋轉     *      * @throws IOException     */    private void test4() throws IOException {        /**         * rotate(角度),正數:順時針 負數:逆時針         */        Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(90).toFile(                "C:/image+90.jpg");        Thumbnails.of("images/test.jpg").size(1280, 1024).rotate(-90).toFile(                "C:/iamge-90.jpg");    }    /**     * 浮水印     *      * @throws IOException     */    private void test5() throws IOException {        /**         * watermark(位置,浮水印圖,透明度)         */        Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(                Positions.BOTTOM_RIGHT,                ImageIO.read(new File("images/watermark.png")), 0.5f)                .outputQuality(0.8f).toFile(                        "C:/image_watermark_bottom_right.jpg");        Thumbnails.of("images/test.jpg").size(1280, 1024).watermark(                Positions.CENTER,                ImageIO.read(new File("images/watermark.png")), 0.5f)                .outputQuality(0.8f).toFile("C:/image_watermark_center.jpg");    }    /**     * 裁剪     *      * @throws IOException     */    private void test6() throws IOException {        /**         * 圖片中心400*400的地區         */        Thumbnails.of("images/test.jpg").sourceRegion(Positions.CENTER, 400,                400).size(200, 200).keepAspectRatio(false).toFile(                "C:/image_region_center.jpg");        /**         * 圖片右下400*400的地區         */        Thumbnails.of("images/test.jpg").sourceRegion(Positions.BOTTOM_RIGHT,                400, 400).size(200, 200).keepAspectRatio(false).toFile(                "C:/image_region_bootom_right.jpg");        /**         * 指定座標         */        Thumbnails.of("images/test.jpg").sourceRegion(600, 500, 400, 400).size(                200, 200).keepAspectRatio(false).toFile(                "C:/image_region_coord.jpg");    }    /**     * 轉化映像格式     *      * @throws IOException     */    private void test7() throws IOException {        /**         * outputFormat(映像格式)         */        Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("png")                .toFile("C:/image_1280x1024.png");        Thumbnails.of("images/test.jpg").size(1280, 1024).outputFormat("gif")                .toFile("C:/image_1280x1024.gif");    }    /**     * 輸出到OutputStream     *      * @throws IOException     */    private void test8() throws IOException {        /**         * toOutputStream(流對象)         */        OutputStream os = new FileOutputStream(                "C:/image_1280x1024_OutputStream.png");        Thumbnails.of("images/test.jpg").size(1280, 1024).toOutputStream(os);    }    /**     * 輸出到BufferedImage     *      * @throws IOException     */    private void test9() throws IOException {        /**         * asBufferedImage() 返回BufferedImage         */        BufferedImage thumbnail = Thumbnails.of("images/test.jpg").size(1280,                1024).asBufferedImage();        ImageIO.write(thumbnail, "jpg", new File(                "C:/image_1280x1024_BufferedImage.jpg"));    }}


完整demo下載: Thumbnailator

 



 

java使用Thumbnailator操作圖片

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.