zoukankan      html  css  js  c++  java
  • tif格式图片转换为gif、png、jpg格式(Java实战)

    tif格式图片转换为gif、png、jpg格式(Java实战)

    tif的格式的图片通常很大,且不能被浏览器直接预览,一般处理方案都是服务端将其转换为jpg、png等格式的图片,再由前端进行展示。

    网络上也有很多转换格式的样例,但大都比较麻烦,本次实践使用开源组件 thumbnailator 来实现图片格式转换,更为便捷。

    引用依赖

    <dependency>
        <groupId>net.coobird</groupId>
        <artifactId>thumbnailator</artifactId>
        <version>0.4.8</version>
    </dependency>
    

    实战

    tif图片样例:
    image

    存储大小:18.4MB

    实战代码:

    public static void main(String[] args) throws IOException {
    
        /*------------ 转换为jpg -------------*/
        Thumbnails.of(new File("/Users/axin/IdeaProjects/axin-framework/world/src/main/java/com/axin/world/picTest/tifdemo2.tiff"))
                .size(1440, 2560)
                .outputFormat("jpg")
                .toFile("image-conver.jpg");
    
        /*------------ 转换为gif -------------*/
        Thumbnails.of(new File("/Users/axin/IdeaProjects/axin-framework/world/src/main/java/com/axin/world/picTest/tifdemo2.tiff"))
                .size(1440, 2560)
                .outputFormat("gif")
                .toFile("image-conver2.gif");
    
        /*------------ 转换为png -------------*/
        Thumbnails.of(new File("/Users/axin/IdeaProjects/axin-framework/world/src/main/java/com/axin/world/picTest/tifdemo2.tiff"))
                .size(1440, 2560)
                .outputFormat("png")
                .toFile("image-conver.png");
    }
    

    转换后:
    image

    image

    可以看到图片肉眼看上去没有什么变化。

  • 相关阅读:
    jQuery小技巧
    HTML5 学习指导
    js对象排序&&倒序
    JS 中如何判断字符串类型的数字
    JavaScript中function的多义性
    JS 继承
    45.oracle表类型、数据拆分、表分区
    44.oracle表空间的使用
    43.oracle同义词
    42.oracle物化视图
  • 原文地址:https://www.cnblogs.com/keeya/p/14335621.html
Copyright © 2011-2022 走看看