>백엔드 개발 >C++ >C#에서 PDF를 병합할 때 과도한 공백을 제거하는 방법은 무엇입니까?

C#에서 PDF를 병합할 때 과도한 공백을 제거하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-12-29 03:55:10342검색

How to Eliminate Excess Whitespace When Merging PDFs in C#?

병합 시 공백을 제거하는 방법

문제:
여러 PDF 문서를 병합할 때 각 페이지는 다음과 같은 경우에도 전체 페이지로 간주됩니다. 콘텐츠의 양이 적어 병합된 텍스트에 세로 공백이 발생합니다. document.

해결책:

PdfVeryDenseMergeTool 클래스 사용(C#):

public class PdfVeryDenseMergeTool
{
    // ... (rest of the class)
    protected Rectangle PageSize;
    protected float TopMargin;
    protected float BottomMargin;
    protected float Gap;
    protected Document Document;
    protected PdfWriter Writer;
    protected float YPosition = 0;

    public PdfVeryDenseMergeTool(Rectangle size, float top, float bottom, float gap)
    {
        // ... (rest of the constructor)
    }

    public void Merge(MemoryStream outputStream, List<PdfReader> inputs)
    {
        // ... (rest of the method)
    }
}

PageVerticalAnalyzer 클래스 사용(C#):

public class PageVerticalAnalyzer : IRenderListener
{
    // ... (rest of the class)
    public List<float> VerticalFlips = new List<float>();

    // ... (rest of the methods)
}

코드 파일 수집 및 도구 실행(C#):

public void TestMergeDocuments()
{
    PdfVeryDenseMergeTool tool = new PdfVeryDenseMergeTool(iTextSharp.text.PageSize.A4, 18, 18, 10);
    List<byte[]> Files = new List<byte[]>();

    // ... (code to load files)

    using (MemoryStream ms = new MemoryStream())
    {
        List<PdfReader> files = new List<PdfReader>();
        foreach (byte[] ba in Files)
        {
            files.Add(new PdfReader(ba));
        }
        tool.Merge(ms, files);
        // ... (save the file using ms.GetBuffer())
    }
}

위 내용은 C#에서 PDF를 병합할 때 과도한 공백을 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.