Пейзаж и портрет в одном pdf

Мне нужно создать отчет в формате PDF из URL-адреса в нашем приложении. Возможно ли иметь как альбомную, так и портретную страницы в одном и том же сгенерированном PDF-документе?

Я бы хотел, чтобы гистограммы были портретными, а таблицы - альбомными (горизонтальными). Глядя на документацию EVO, я не знаю, возможно ли это.

Я знаю, что вы можете определить Пейзаж или Портрет с помощью

htmlToPdfConverter.PdfDocumentOptions.PdfPageOrientation

Но это относится ко всему документу. Я хотел бы что-то, что я мог бы потенциально определить html, который сказал бы EVO печатать этот раздел как альбомный.


person adam.k    schedule 24.07.2019    source источник


Ответы (1)


Вы можете иметь разделы «Портрет» и «Пейзаж» в одном PDF-файле. Для этого вы можете создать пустой объект Document и добавить в этот документ страницу PDF с нужной ориентацией. На только что созданную страницу PDF вы можете добавить объект HtmlToPdfElement для отображения HTML и автоматически добавить страницы PDF с той же ориентацией, что и страница PDF, которую вы изначально создали. Процедуру можно повторить со страницами PDF разной ориентации. Существует живой пример с кодом C# для этого подхода в разделе Объединение нескольких HTML-страниц в один PDF-файл. демо. Пример кода также скопирован ниже:

protected void convertToPdfButton_Click(object sender, EventArgs e)
{
    // Create the PDF document where to add the HTML documents
    Document pdfDocument = new Document();

    // Create a PDF page where to add the first HTML
    PdfPage firstPdfPage = pdfDocument.AddPage();

    try
    {
        // Create the first HTML to PDF element
        HtmlToPdfElement firstHtml = new HtmlToPdfElement(0, 0, firstUrlTextBox.Text);

        // Optionally set a delay before conversion to allow asynchonous scripts to finish
        firstHtml.ConversionDelay = 2;

        // Add the first HTML to PDF document
        AddElementResult firstAddResult = firstPdfPage.AddElement(firstHtml);

        PdfPage secondPdfPage = null;
        PointF secondHtmlLocation = Point.Empty;

        if (startNewPageCheckBox.Checked)
        {
            // Create a PDF page where to add the second HTML
            secondPdfPage = pdfDocument.AddPage();
            secondHtmlLocation = PointF.Empty;
        }
        else
        {
            // Add the second HTML on the PDF page where the first HTML ended
            secondPdfPage = firstAddResult.EndPdfPage;
            secondHtmlLocation = new PointF(firstAddResult.EndPageBounds.Left, firstAddResult.EndPageBounds.Bottom);
        }

        // Create the second HTML to PDF element
        HtmlToPdfElement secondHtml = new HtmlToPdfElement(secondHtmlLocation.X, secondHtmlLocation.Y, secondUrlTextBox.Text);

        // Optionally set a delay before conversion to allow asynchonous scripts to finish
        secondHtml.ConversionDelay = 2;

        // Add the second HTML to PDF document
        secondPdfPage.AddElement(secondHtml);

        // Save the PDF document in a memory buffer
        byte[] outPdfBuffer = pdfDocument.Save();

        // Send the PDF as response to browser

        // Set response content type
        Response.AddHeader("Content-Type", "application/pdf");

        // Instruct the browser to open the PDF file as an attachment or inline
        Response.AddHeader("Content-Disposition", String.Format("attachment; filename=Merge_Multipe_HTML.pdf; size={0}", outPdfBuffer.Length.ToString()));

        // Write the PDF document buffer to HTTP response
        Response.BinaryWrite(outPdfBuffer);

        // End the HTTP response and stop the current page processing
        Response.End();
    }
    finally
    {
        // Close the PDF document
        pdfDocument.Close();
    }
}
person EvoPdf    schedule 16.11.2019