从旧版本tiff图像转换为更新版本的tiff图像 [英] Convert from older version tiff image to newer version tiff image

查看:107
本文介绍了从旧版本tiff图像转换为更新版本的tiff图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的旧版本中有.tiff格式的图片。现在我想在较新版本中转换该图片。



我尝试过:



我在google上搜索过,但所有这些都是从tiff转换为pdf或jpeg格式,反之亦然。但我需要从tiff转换为tiff,但需要更新版本。

I have a image with .tiff format in older version.Now i want to convert that image in Newer Version.

What I have tried:

I have searched on google but all are giving conversion from tiff to pdf or jpeg format or vice versa. But I need conversion from tiff to tiff but with a newer version.

推荐答案

这取决于你想要做什么:手动通过应用程序,或以编程方式 - 两者是不同的。

通过应用程序:

在新的,闪亮的图像编辑程序中打开它(或者油漆,如果这是你有的可用的)

使用另存为(通常热键到F12)并选择TIFF作为输出格式。

给它一个新名称并保存。

以编程方式:

取决于语言的确切方法,但它是相同的过程:读取它,并将其另存为新文件。对于C#:

This depend son what you want to do: manually via an app, or programatically - the two are different.
Via an app:
Open it in your new, shiny image editing program (or Paint, if that's what you have available)
Use "Save as" (often hotkeyed to F12) and select TIFF as the output format.
Give it a new name and save it.
Programatically:
Depend on the language exactly how to do it, but it's the same process: read it, and save it as a new file. For C#:
using (Image im = Image.FromFile(@"D:\Test Data\Old-style-jpeg-compression.tif"))
   {
   im.Save(@"D:\Test Data\New-style-jpeg-compresion.tif", ImageFormat.Tiff);
   }


这篇关于从旧版本tiff图像转换为更新版本的tiff图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆