这是用于将多页tiff文件转换为单页jpeg的asp.net源。
我习惯使用MemoryStream类,然后转换为jpeg。
这是在Windows 2005,IIS6,Visual Studio 2008和.NET Framework 2.0中。
MemoryStream ms = null;
Image SrcImg = null;
Image returnImage = null;
try
{
SrcImg = Image.FromFile(@'d:\\test.tif');
ms = new MemoryStream();
FrameDimension FrDim = new FrameDimension(SrcImg.FrameDimensionsList[0]);
SrcImg.SelectActiveFrame(FrDim, 17); // 17 page...
SrcImg.Save(ms, ImageFormat.Tiff);
// Prevent using images internal thumbnail
SrcImg.RotateFlip(System.Drawing.RotateFlipType.Rotate180FlipNone);
SrcImg.RotateFlip(System.Drawing.RotateFlipType.Rotate180FlipNone);
//Save Aspect Ratio
if (SrcImg.Width <= ImgWidth) ImgWidth = SrcImg.Width;
int NewHeight = SrcImg.Height * ImgWidth / SrcImg.Width;
if (NewHeight > ImgHeight)
{
// Resize with height instead
ImgWidth = SrcImg.Width * ImgHeight / SrcImg.Height;
NewHeight = ImgHeight;
}
returnImage = Image.FromStream(ms).GetThumbnailImage(ImgWidth, NewHeight, null, IntPtr.Zero); }
但此代码适用于Windows 2008,IIS7,Visual Studio 2010和.NET Framework 4.0。
错误消除“ SelectActiveFrame ”句子。
以下是示例tiff文件。 [Mouse right click - Save as "test.tif"]
什么事?还是有什么好的解决方案?