PdfDocumentGdiExtensions.AddImage Method (PdfDocument, Image)

Adds new image(s) with the data and properties of specified Image to the end of the collection of document images.

Namespace:  BitMiracle.Docotic.Pdf.Gdi
Assembly:  BitMiracle.Docotic.Pdf.Gdi (in BitMiracle.Docotic.Pdf.Gdi.dll)

Syntax

C#
public static PdfImage AddImage(
	this PdfDocument doc,
	Image image
)
VB
<ExtensionAttribute>
Public Shared Function AddImage ( 
	doc As PdfDocument,
	image As Image
) As PdfImage

Parameters

doc
Type: BitMiracle.Docotic.Pdf.PdfDocument
The document.
image
Type: System.Drawing.Image
The existing Image from which to create PdfImage(s).

Return Value

Type: PdfImage
The PdfImage for the first frame (page) found in the existing Image.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PdfDocument. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

This method adds a new image for each frame (page) found in the existing Image.

See Also