创建多页TIFF与Magick.NET
本文关键字:Magick NET TIFF 创建 | 更新日期: 2023-09-27 17:50:01
我正在使用Magick。NET并尝试创建多页tiff文件。我输入的是pdf文件。但是将结果写入MemoryStream或将其作为字节数组获取会导致错误:
iisexpress.exe:在写目录之前刷新数据错误。' TIFFWriteDirectorySec' @ error/tiff.c/TIFFErrors/551
但是当我将结果写入硬盘上的文件时,没有错误,文件也很好。
下面是我的代码:var outputStream = new MemoryStream();
using (var inputPdf = new MagickImageCollection())
{
inputPdf.Read(rawData, settings);
using (var tif = new MagickImageCollection())
{
foreach (var pdf in inputPdf)
{
pdf.Depth = 8;
pdf.Format = MagickFormat.Tif;
tif.Add(pdf);
}
if (debug)
{
// Writing the data to a file is successful!
tif.Write(pathImage);
}
// But writing it to a stream results in the error!
//tif.Write(outputStream);
// Same as getting the data as byte-array!
var outputData = tif.ToByteArray(MagickFormat.Tif);
outputStream.Write(outputData, 0, outputData.Length);
}
}
已解决。
解决方案是设置一个压缩:
pdf.CompressionMethod = CompressionMethod.JPEG;
有人知道为什么吗?