2

我有一些包含多个页面的 tif 文件,我想将其转换为单个长页面。即一个包含两个页面的文件,每个页面为 8.5x11,将被转换为大小为 8.5x22 的结果文件。有什么办法可以去掉分页符吗?

不是在问如何将多个文件转换为一个文件。

4

1 回答 1

2

我已经解决了这个问题。以下代码中有很大一部分来自本页上的Scott Hanselman

此 C# 函数采用源图像的文件名和 tiff 输出的保存位置:

public static void RemovePageBreaks(string fileInput, string fileOutput)
        {
            using (Image image = Image.FromFile(fileInput))
            using (MemoryStream m = new MemoryStream())
            {
                int width = image.Width;
                int height = 0;
                int pageCount = image.GetFrameCount(FrameDimension.Page);
                height = image.Height * pageCount;
                int pasteFrom = 0;
                using (Bitmap compositeImage = new Bitmap(width, height))
                using (Graphics compositeGraphics = Graphics.FromImage(compositeImage))
                {
                    compositeGraphics.CompositingMode = System.Drawing.Drawing2D.CompositingMode.SourceCopy;
                    for (int page = 0; page < pageCount; page++)
                    {

                        image.SelectActiveFrame(FrameDimension.Page, page);
                        image.Save(m, image.RawFormat);
                        Rectangle rect = new Rectangle(0, pasteFrom, image.Width, image.Height);
                        compositeGraphics.DrawImageUnscaledAndClipped(image, rect);
                        pasteFrom += image.Height;
                    }
                    compositeImage.Save(fileOutput, System.Drawing.Imaging.ImageFormat.Tiff);
                }

            }
        }
于 2012-11-14T22:42:47.393 回答