C# tif文件转jpg
Posted liuwenjun830
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# tif文件转jpg相关的知识,希望对你有一定的参考价值。
需要添加WindowBase,PresentationCore的引用。
代码如下:
private Stream GetImageStream() { //可以通过网络或本地文件的形式,返回Tif文件流 } Stream stream = GetImageStream() string fileName = "temp.jpg";//需要保存的文件名 using(FileStream fs = new FileStream(fileName,FileMode.Create) { TiffBitmapDecoder decoder = new TiffBitmapDecoder(stream,BitmapCreateOptions.PreservePixelFormat,BitmapCacheOption.Default); BitmapSource bitmapSource = decoder.Frames[0];//此处只取tiff中的第一帧,可以根据情况取多帧,从Frames.Count中取 JpegBitmapEncoder encoder = new JpegBitmapEncoder(); encoder.Frames.Add(BitmapFrame.Create(bitmapSource); encoder.Save(fs); }
以上是关于C# tif文件转jpg的主要内容,如果未能解决你的问题,请参考以下文章
GlobalMapper精品教程040:tif转jpg:解决ArcGIS中JPEG压缩仅支持8位或16位无符号数据的问题