Skip to main content
A newer version of this page is available. .

PdfDocumentProcessor.CreateGraphics() Method

Creates a new instance of the PdfGraphics used as a drawing context that can draw graphics on a PDF document.

Namespace: DevExpress.Pdf

Assembly: DevExpress.Docs.v18.2.dll

Declaration

public PdfGraphics CreateGraphics()

Returns

Type Description
PdfGraphics

A PdfGraphics object used as a drawing context that can be used to draw on the document.

Remarks

Use this method to create an instance of the PdfGraphics. This class declares the methods used to create an image (PdfGraphics.DrawImage), text (PdfGraphics.DrawString) and graphic elements on a document.

To add graphic content to a new PDF page, call one of the PdfDocumentProcessor.RenderNewPage overload methods with the specified paper size and created graphics.

To add graphics to an existing document, call the PdfGraphics.AddToPageForeground and PdfGraphics.AddToPageBackground methods.

For more details, see the PDF Graphics section.

Example

The PDF Document Processor allows you to draw graphic primitives on the PDF page, such as lines, Bezier curves, polygons, ellipses, paths, an image and a string.

This example shows how to draw a business card in the document foreground. To accomplish this task, do the following:

  • Create a PDF document processor and add an empty document to it by calling the PdfDocumentProcessor.CreateEmptyDocument method.
  • Create PDF graphics represented by an instance of the PdfGraphics class by calling the PdfDocumentProcessor.CreateGraphics method. To access PdfGraphics, you need to reference the DevExpress.Pdf.Drawing assembly.
  • To draw an image on the PDF page, call the PdfGraphics.DrawImage method for the specified image at the specified location with the specified size.
  • To draw text, call the PdfGraphics.DrawString method at the specified location with the specified Brush and Font objects.
  • Render a page with created graphics by calling the PdfDocumentProcessor.RenderNewPage method.
Imports DevExpress.Pdf
Imports System
Imports System.Drawing

Namespace DocumentCreationAPI
    Friend Class Program

        Shared Sub Main(ByVal args() As String)

            Using processor As New PdfDocumentProcessor()

                ' Create an empty document.
                processor.CreateEmptyDocument("..\..\Result.pdf")

                ' Create and draw PDF graphics.
                Using graph As PdfGraphics = processor.CreateGraphics()
                    DrawGraphics(graph)

                    ' Render a page with graphics.
                    processor.RenderNewPage(PdfPaperSize.Letter, graph)
                End Using
            End Using
        End Sub

        Private Shared Sub DrawGraphics(ByVal graph As PdfGraphics)

            ' Draw text lines on the page. 
            Dim black As SolidBrush = CType(Brushes.Black, SolidBrush)
            Using font1 As New Font("Times New Roman", 32, FontStyle.Bold)
                graph.DrawString("PDF Document Processor", font1, black, 180, 150)
            End Using
            Using font2 As New Font("Arial", 20)
                graph.DrawString("Display, Print and Export PDF Documents", font2, black, 168, 230)
            End Using
            Using font3 As New Font("Arial", 10)
                graph.DrawString("The PDF Document Processor is a non-visual component " & "that provides the application programming interface of the PDF Viewer.", font3, black, 16, 300)
            End Using
        End Sub
    End Class
End Namespace

The following code snippets (auto-collected from DevExpress Examples) contain references to the CreateGraphics() method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also