VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Pdf.Tree Namespace / PdfPageCollection Class / Add Methods / Add(VintasoftImage) Method
Синтаксис Example Требования Смотрите также
В этом разделе
    Add(VintasoftImage) Метод (PdfPageCollection)
    В этом разделе
    Добавляет новую страницу с указанным изображением в PdfPageCollection.
    Синтаксис
    'Declaration
    
    Public Overloads Function Add( _
    ByVal image
    Фоновое изображение страницы.
    As Vintasoft.Imaging.VintasoftImage _
    ) As PdfPage

    Parameters

    image
    Фоновое изображение страницы.

    Return Value

    Добавлен PdfPage.
    Пример

    Вот пример, показывающий, как добавить новую страницу только с изображением в PDF документ:

    
    ''' <summary>
    ''' Adds new image-only PDF page into a PDF document.
    ''' </summary>
    ''' <param name="pdfFileName">The filename of PDF document.</param>
    ''' <param name="image">The image of the page.</param>
    Public Shared Sub AddImageOnlyPdfPageToPdfDocument(pdfFileName As String, image As Vintasoft.Imaging.VintasoftImage)
        ' open PDF document
        Using document As New Vintasoft.Imaging.Pdf.PdfDocument(pdfFileName)
            ' get the collection of pages of PDF document
            Dim pages As Vintasoft.Imaging.Pdf.Tree.PdfPageCollection = document.Pages
    
            ' add page with specified image into collection of pages
            pages.Add(image)
    
            ' save changes to a file
            document.SaveChanges()
        End Using
    End Sub
    
    
    
    /// <summary>
    /// Adds new image-only PDF page into a PDF document.
    /// </summary>
    /// <param name="pdfFileName">The filename of PDF document.</param>
    /// <param name="image">The image of the page.</param>
    public static void AddImageOnlyPdfPageToPdfDocument(
        string pdfFileName, 
        Vintasoft.Imaging.VintasoftImage image)
    {
        // open PDF document
        using (Vintasoft.Imaging.Pdf.PdfDocument document = 
            new Vintasoft.Imaging.Pdf.PdfDocument(pdfFileName))
        {
            // get the collection of pages of PDF document
            Vintasoft.Imaging.Pdf.Tree.PdfPageCollection pages = document.Pages;
    
            // add page with specified image into collection of pages
            pages.Add(image);
    
            // save changes to a file
            document.SaveChanges();
        }
    }
    
    

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также