如何将JPEG图像转换为TIFF图像?

时间:2017-01-07 13:31:58

标签: java tiff javax.imageio

我正在开发一个用于图像处理的应用程序,我需要将JPEG文件转换为TIFF文件。

我尝试过以下代码段进行转换。但是,它正在生成损坏的tiff文件。

以下是代码:

package javaapplication2;

import java.awt.Color;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import com.idrsolutions.image.tiff.TiffEncoder;
import java.io.FileOutputStream;
import java.io.OutputStream;

public class JavaApplication2
{
    public static void main(String[] args)
    {
        BufferedImage bufferedImage;
        try 
        {
            bufferedImage = ImageIO.read(new File("C:\\Users\\Jay Tanna\\Desktop\\image1.jpg"));


            BufferedImage newBufferedImage = new BufferedImage(bufferedImage.getWidth(),
            bufferedImage.getHeight(), BufferedImage.TYPE_INT_RGB);

            newBufferedImage.createGraphics().drawImage(bufferedImage, 0, 0, Color.WHITE, null);

            OutputStream   out      =   new FileOutputStream("C:\\Users\\Jay Tanna\\Desktop\\myNew_File.tiff");
            TiffEncoder tiffEncoder =   new TiffEncoder();
            tiffEncoder.setCompressed(true);
            tiffEncoder.write(newBufferedImage, out);

            System.out.println("Done");

    } 
        catch (IOException e) 
        {

            e.printStackTrace();

    }

   }

}

请帮我解决这个问题。

2 个答案:

答案 0 :(得分:1)

不熟悉com.idrsolutions.image.tiff.TiffEncoder,但您肯定错过了out.close(),如果没有user,某些数据可能会保持缓冲状态而不会进入磁盘。

答案 1 :(得分:-1)

更改文件的扩展名,试试这个:

OutputStream   out = new FileOutputStream("C:\\Users\\Jay Tanna\\Desktop\\myNew_File.tiff");

为此:

OutputStream   out = new FileOutputStream("C:\\Users\\Jay Tanna\\Desktop\\myNew_File.TIF");