Back to Devexpress

PdfGraphicsAcroFormSignatureField Class

officefileapi-devexpress-dot-pdf-0a768952.md

latest6.4 KB
Original Source

PdfGraphicsAcroFormSignatureField Class

A signature form field in PDF Graphics API.

Namespace : DevExpress.Pdf

Assembly : DevExpress.Pdf.v25.2.Drawing.dll

NuGet Package : DevExpress.Pdf.Drawing

Declaration

csharp
public class PdfGraphicsAcroFormSignatureField :
    PdfGraphicsAcroFormCommonField
vb
Public Class PdfGraphicsAcroFormSignatureField
    Inherits PdfGraphicsAcroFormCommonField

The following members return PdfGraphicsAcroFormSignatureField objects:

Remarks

Tip

Use the PdfSignatureBuilder class to create a signature field and sign a PDF file. Refer to the following article for more information: Sign PDF Documents.

Create a Form Field

Create a new PdfGraphicsAcroFormSignatureField object, and pass the field name and location as constructor parameters. The field location is calculated in the world coordinate system.

You can also call the PdfGraphicsAcroFormField.CreateSignature method to create a new PdfGraphicsAcroFormSignatureField object.

Specify Form Field Parameters

The following parameters are available:

ParameterAPI
Text displayed in the form fieldText
Image displayed in the form fieldContentDXImage
Form field nameName
Tooltip textToolTip
Appearance settings (background and foreground color, font and border options)Appearance

Add a Form Field as a Graphics Content

To add a text signature field as graphics content, pass a PdfGraphicsAcroFormSignatureField instance as a parameter to the PdfGraphics.AddFormField method.

To access the PdfGraphics class, reference the DevExpress.Pdf.Drawing.v.25.2 assembly.

Draw a Form Field on a Page

To draw an interactive field on a page, call one of the following methods:

Example

The following code snippet uses PDF Graphics API to create a signature field and add it to a new PDF page.

View Example

csharp
using DevExpress.Pdf;
using DevExpress.Drawing;

//...

static void Main(string[] args)
{
    using (PdfDocumentProcessor processor = new PdfDocumentProcessor())
    {
        // Create an empty document.
        processor.CreateEmptyDocument("..\\..\\Result.pdf");

        // Create graphics and draw a signature field.
        using (PdfGraphics graphics = processor.CreateGraphicsPageSystem())
        {
            DrawSignatureField(graphics);

            // Render a page with graphics.
            processor.RenderNewPage(PdfPaperSize.Letter, graphics);
        }
    }
}

static void DrawSignatureField(PdfGraphics graphics)
{
    // Create a signature field
    PdfGraphicsAcroFormSignatureField signature = new PdfGraphicsAcroFormSignatureField("signature", new RectangleF(0, 20, 120, 130));

    // Specify a content image for the signature field.
    DXImage image = DXImage.FromStream(new FileStream("..\\..\\Image.png", FileMode.OpenOrCreate, FileAccess.Read));

    // Add the field to the document.
    graphics.AddFormField(signature);
}
vb
Imports DevExpress.Pdf
Imports DevExpress.Drawing

Shared Sub Main(ByVal args() As String)
    Using processor As New PdfDocumentProcessor()

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

        ' Create graphics and draw a signature field.
        Using graphics As PdfGraphics = processor.CreateGraphicsPageSystem()
            DrawSignatureField(graphics)

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

Private Shared Sub DrawSignatureField(ByVal graphics As PdfGraphics)

    ' Create a signature field
    Dim signature As New PdfGraphicsAcroFormSignatureField("signature", New RectangleF(0, 20, 120, 130))

    ' Specify a content image for the signature field.
    Dim image As DXImage = DXImage.FromStream(New FileStream("..\\..\\Image.png", FileMode.OpenOrCreate, FileAccess.Read))
    signature.ContentDXImage = image

    ' Add the field to the document.
    graphics.AddFormField(signature)
End Sub

Inheritance

Object PdfGraphicsAcroFormField PdfGraphicsAcroFormCommonField PdfGraphicsAcroFormSignatureField

See Also

PdfGraphicsAcroFormSignatureField Members

DevExpress.Pdf Namespace